摘要:
1 [DllImport("Shell32.dll")] 2 static extern int SHGetFileInfo(string pszPath, uint dwFileAttributes, ref SHFILEINFO psfi, uint cbFileInfo, uint uFlags); 3 4 struct SHFILEINFO 5 { 6 public IntPtr hIcon; 7 public int iIcon; 8 pub... 阅读全文