2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[WPF] クラスライブラリのプロジェクトにWPFのウインドウを追加する

Last updated at Posted at 2022-01-05

もくじ

やりたいこと

.net6のクラスライブラリで、WPFのウインドウを出すような機能(Model)を作ろうと思い、プロジェクトにWPFのウインドウをしようと思ったが、WPFアプリならソリューションエクスプローラーの中のプロジェクトを右クリックして [追加] > [ウインドウ(WPF)] とすると追加できるウインドウが出てこなかった。
image.png
image.png
どうにかして、dllのプロジェクトにWPFのウインドウを追加したい。

前提

下記を使用。
VisualStudio2022
.net5

やりかた

csprojのファイルを直接編集して、<PropertyGroup>の中に下記を追加した。

<UseWPF>true</UseWPF>
image.png

これで、ウインドウ(WPF)が出てくるようになった。
image.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?