コードでC#コンソールアプリケーションのアイコンを設定する方法を知っている人はいますか(Visual Studioのプロジェクトプロパティを使用していません)?
コードで実行可能ファイルのアイコンを指定することはできません。これはバイナリファイル自体の一部です。
コマンドラインからは、ヘルプがあれば/win32icon:<file>
を使用しますが、アプリケーションのコード内で指定することはできません。ほとんどの場合、アプリケーションのアイコンが表示されているので、アプリはまったく実行されていないことを忘れないでください。
これは、エクスプローラーでのファイル自体のアイコンを意味していることを前提としています。アプリケーションのアイコンを意味する場合実行中ファイルをダブルクリックするだけで、それは常にコンソール自体のアイコンになると思います。
プロジェクトのプロパティで変更できます。
このStackOverflowの記事を参照してください: コンソールウィンドウのアイコンを.netから変更することは可能ですか?
要約するには、Visual Studioでプロジェクト(ソリューションではない)を右クリックし、プロパティを選択します。 [アプリケーション]タブの下部に、アイコンを変更できる[アイコンとマニフェスト]のセクションがあります。
コードでアイコンを変更するソリューションは次のとおりです。
class IconChanger
{
public static void SetConsoleIcon(string iconFilePath)
{
if (Environment.OSVersion.Platform == PlatformID.Win32NT)
{
if (!string.IsNullOrEmpty(iconFilePath))
{
System.Drawing.Icon icon = new System.Drawing.Icon(iconFilePath);
SetWindowIcon(icon);
}
}
}
public enum WinMessages : uint
{
/// <summary>
/// An application sends the WM_SETICON message to associate a new large or small icon with a window.
/// The system displays the large icon in the ALT+TAB dialog box, and the small icon in the window caption.
/// </summary>
SETICON = 0x0080,
}
[System.Runtime.InteropServices.DllImport("user32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
private static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, IntPtr lParam);
private static void SetWindowIcon(System.Drawing.Icon icon)
{
IntPtr mwHandle = System.Diagnostics.Process.GetCurrentProcess().MainWindowHandle;
IntPtr result01 = SendMessage(mwHandle, (int)WinMessages.SETICON, 0, icon.Handle);
IntPtr result02 = SendMessage(mwHandle, (int)WinMessages.SETICON, 1, icon.Handle);
}// SetWindowIcon()
}