且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Windows窗体.NET 2.0:如何绘制PNG图标?

更新时间:2023-12-06 09:22:58

The ResourceManager loads the icon based on the bits stored in the resources. However, the way it handles loading won't let you access the 256x256 icon (this information does not make its way into the System.Drawing.Icon that you are getting back).

I am sorry to disappoint you, but the only way which works that I am aware of is to load the icon through a P/Invoke of LoadImage and working with a file (yes, I know, that's not what you were looking for). So the new question should be: how do I extract the bits of a given resource so that I can store them to a file? I fear that this isn't possible either, having done some stepping through System.Resources.ResourceReader, as the resource data seems to be a collection of serialized .NET objects.

Anyway, for those who can afford to load the icon from a .ICO file (and for myself, as a future reference on how to load 256x256 icons), call IconConverter.LoadIcon:

using System.Runtime.InteropServices;

static class IconConverter
{
    public static System.Drawing.Icon LoadIcon(string path, int width, int height)
    {
        System.IntPtr hIcon;
        hIcon = LoadImage (System.IntPtr.Zero, path, IMAGE_ICON, width, height,
                           LR_LOADFROMFILE);
        if (hIcon == System.IntPtr.Zero)
        {
            return null;
        }
        return System.Drawing.Icon.FromHandle (hIcon);
    }

    const int IMAGE_ICON = 1;
    const int LR_LOADFROMFILE = 0x0010;

    [DllImport ("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
    static extern System.IntPtr LoadImage(System.IntPtr hInstance,
                                          string lpszName, uint uType,
                                          int cxDesired, int cyDesired,
                                          uint fuLoad);
}

Once you have the System.Drawing.Icon in the expected size, just paint it using graphics.DrawIconUnstretched.