我有一个 .exe 文件的路径名。
如果将此文件拖放到桌面上,如何找到 Windows 将使用的图标的路径?(我想在我自己的程序中显示这个图标。)
我需要能够在运行时通过我的 C# 程序找到图标。
在 Visual Studio 2008 中使用 C#。
如果不久前在网上找到此代码来执行此操作:
class Win32
{
public const uint SHGFI_ICON = 0x100;
public const uint SHGFI_LARGEICON = 0x0; // 'Large icon
public const uint SHGFI_SMALLICON = 0x1; // 'Small icon
[DllImport("shell32.dll")]
public static extern IntPtr SHGetFileInfo(string pszPath, uint dwFileAttributes, ref SHFILEINFO psfi, uint cbSizeFileInfo, uint uFlags);
public static Bitmap GetFileIcon(string fName)
{
IntPtr hImgSmall; //the handle to the system image list
SHFILEINFO shinfo = new SHFILEINFO();
hImgSmall = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_SMALLICON);
return Icon.FromHandle(shinfo.hIcon).ToBitmap();
}
}
[StructLayout(LayoutKind.Sequential)]
public struct SHFILEINFO
{
public IntPtr hIcon;
public IntPtr iIcon;
public uint dwAttributes;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
public string szDisplayName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 80)]
public string szTypeName;
};
你还需要
using System.Drawing;
using System.Runtime.InteropServices;
引用所有适当的类
默认图标将是嵌入在索引 0 处的 exe 中的图标。
查看:项目属性 > 应用程序选项卡 > 图标。
这篇 CodeProject 文章似乎做得很好。它提供了一个IconExtractor
类,可以将所有 Win32 API 内容封装到一个很好的托管接口中。
您可以这样使用它:
using TKageyu.Utils;
...
using (IconExtractor ie = new IconExtractor(@"D:\sample.exe"))
{
Icon icon0 = ie.GetIcon(0);
Icon icon1 = ie.GetIcon(1);
...
Icon[] splitIcons = IconExtractor.SplitIcon(icon0);
...
}