C#控制台应用程序图标

时间:2009-07-23 08:18:30

标签: c# console-application imageicon

有谁知道如何在代码中设置C#控制台应用程序的图标(不使用Visual Studio中的项目属性)?

3 个答案:

答案 0 :(得分:24)

您可以在项目属性中更改它。

请参阅此Stack Overflow文章:Is it possible to change a console window's icon from .net?

总结在Visual Studio中右键单击您的项目(而不是解决方案)并选择属性。在“应用程序”选项卡的底部有一个“图标和清单”部分,您可以在其中更改图标。

答案 1 :(得分:23)

您无法在代码中指定可执行文件的图标 - 它是二进制文件本身的一部分。

如果有任何帮助,可以从命令行使用/win32icon:<file>,但不能在应用程序的代码中指定它。不要忘记,大多数时候显示应用程序的图标,您的应用程序根本没有运行!

假设您在资源管理器中表示文件本身的图标。如果您指的是应用程序运行时的图标,如果您只是双击该文件,我相信它将始终只是控制台本身的图标。

答案 2 :(得分:6)

以下是通过代码更改图标的解决方案:

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()
}