C# 控制台应用程序图标

问题描述 投票:0回答:3

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

c# console-application imageicon
3个回答
31
投票

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

请参阅这篇 Stack Overflow 文章:是否可以从 .net 更改控制台窗口的图标?

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


24
投票

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

如果有任何帮助,您可以在命令行中使用

/win32icon:<file>
,但您无法在应用程序的代码中指定它。不要忘记,大多数时候应用程序图标显示时,您的应用程序根本没有运行!

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


7
投票

这里有一个通过代码更改图标的解决方案:

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()
}
© www.soinside.com 2019 - 2024. All rights reserved.