从给定路径加载图标以在WPF窗口中显示
我有一个显示目录的树和另一个显示文件的面板。 现在显示的文件没有图标。 我所知道的是文件的路径。 我想要做的是让该文件图标显示在该面板中。 我需要输出和Image.source。 目前这就是我所拥有的
private ImageSource GetIcon(string filename)
{
System.Drawing.Icon extractedIcon = System.Drawing.Icon.ExtractAssociatedIcon(filename);
ImageSource imgs;
using (System.Drawing.Icon i = System.Drawing.Icon.FromHandle(extractedIcon.ToBitmap().GetHicon()))
{
imgs = Imaging.CreateBitmapSourceFromHIcon(
i.Handle,
new Int32Rect(0, 0, 16, 16),
BitmapSizeOptions.FromEmptyOptions());
}
return imgs;
从那里我打电话给我,并尝试更改其默认图标:
ImageSource i = GetIcon(f.fullname)
ic.image = i
ic
是列表中给定的项目,f.fullname包含的路径在这里是获取和设置的图像
public BitmapImage Image
{
get { return (BitmapImage)img.Source; }
set { img.Source = value; }
}
它不起作用,这是我尝试过很多方法之一,它说它不能投射不同类型。 有没有人有办法做到这一点?
我完全失去了。
我假设img
是一个标准的Image
控件。
您的Image
属性是BitmapImage
类型,它是一种特定类型的ImageSource
。 CreateBitmapSourceFromHIcon
返回一个名为InteropBitmap
的内部类的实例,该实例无法转换为BitmapImage
,从而导致错误。
您需要将您的属性更改为ImageSource
(或BitmapSource
, CreateBitmapSourceFromHIcon
返回并继承ImageSource
),如下所示:
public ImageSource Image
{
get { return img.Source; }
set { img.Source = value; }
}
链接地址: http://www.djcxy.com/p/44155.html
上一篇: Loading Icons from a given path to display in WPF window