1
1

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.

ConsoleアプリケーションでSystem.Windows.Formsを使う

Last updated at Posted at 2022-03-31

移転します

はじめに

Visual Studio Code で コンソールプログラムを作成するときですが
フォームアプリケーションを操作したいなと思ったときにusingが足りなくて困ったのでそのTipsです。

動作環境

  • Windows10 Pro 21H2
  • Visual Studio Code
  • dotNET Core 6.0.101

結論

.csproj ファイルに追記するだけでOKです。

方法

これがデフォルトの.csproj ファイルの中身です。

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

</Project>

上記の記載を以下のように変更します。

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0-windows</TargetFramework>
    <UseWindowsForms>true</UseWindowsForms>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

</Project>

これでConsoleアプリケーション から Sysmtem.Windows.Forms を利用できます。

おわり

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?