Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I access windows file preview icons from my WPF application

I got a bunch of Pictures and Videos in a directory and needs to be displayed in the WPF application, I am thinking about displaying the Win7 Large Icon itself as the preview image. Because that will save me the work of grabbing an appropriate frame from the video file since Windows is doing that job pretty well already. Any code snippet to access this Shell Icon image data?

like image 711
Jobi Joy Avatar asked Jun 07 '10 07:06

Jobi Joy


1 Answers

When using the Windows API Code Pack, you can do:

XAML

 <Image x:Name="img" />

C#

 img.Source = ShellFile.FromFilePath(@"C:\path\to\file.ext").Thumbnail.BitmapSource;

This requires adding the Microsoft-WindowsAPICodePack-Shell package and the appropriate namespaces.

like image 113
Oren Trutner Avatar answered Sep 30 '22 12:09

Oren Trutner