C#:使用SHGetImageList和SHGetFileInfo获取文件大缩略图/预览,而不是大图标,如Windows资源管理器

时间:2011-07-08 13:28:40

标签: c# winforms shell listview native

我正在使用C#,Windows Forms,Net 2.0。

我正在使用SHGetImageList获取系统图像列表,比方说SHIL_JUMBO参数,并在Windows 7上获取大型256x256图像。

[DllImport(SHELL32, EntryPoint = "#727")]
public static extern int SHGetImageList(int imageList, ref Guid riid, ref IntPtr handle);

public static IntPtr Get(SystemImageListType type)
{
    IntPtr handle = IntPtr.Zero;
    NativeMethods.SHGetImageList((int)type, ref NativeMethods.IIDImageList, ref handle);
    return handle;
}

我也在使用

NativeMethods.SendMessage(listView.Handle, LVM_SETIMAGELIST, LVSIL_NORMAL, imageListHandle);

将系统图像列表设置为我的列表视图,

public static int GetFileIconIndex(string pathName)
{
    NativeMethods.SHFILEINFO shfiData = new NativeMethods.SHFILEINFO();

    NativeMethods.SHGetFileInfo(
        pathName,
        0,
        ref shfiData,
        Marshal.SizeOf(typeof(NativeMethods.SHFILEINFO)),
        NativeMethods.SHGFI.SYSICONINDEX |
        NativeMethods.SHGFI.LARGEICON |
        NativeMethods.SHGFI.ICON );
    return shfiData.iIcon;
}

获取列表视图中加载的不同文件/文件夹的图标索引。

一切正常,除了我得到大的256个图标,即使是电影或图像文件,我希望有一个缩略图(图像/电影的预览),就像在Windows资源管理器中一样。

如何获取缩略图,而不是在Windows资源管理器中显示为缩略图的文件的图标?

1 个答案:

答案 0 :(得分:2)

在Windows Vista及更高版本中,您可以使用IThumbnailProvider界面。

Windows API Code Pack中有一个包装器。

对于XP,有不同的界面,请参阅:http://www.vbaccelerator.com/home/NET/Code/Libraries/Shell_Projects/Thumbnail_Extraction/Thumbail_Tester_Code_zip_ThumbnailTester/ThumbnailCreator_cs.asp

显然,您必须确定哪些文件将使用系统图像列表图标以及哪些文件将使用缩略图。