gpt4 book ai didi

c# - 找到 .exe 的图标

转载 作者:太空宇宙 更新时间:2023-11-03 19:36:05 25 4
gpt4 key购买 nike

我有 .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;

引用所有合适的类

关于c# - 找到 .exe 的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1520204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com