当前位置:  开发笔记 > 编程语言 > 正文

如何在WPF应用程序中使用标准Windows警告/错误图标?

如何解决《如何在WPF应用程序中使用标准Windows警告/错误图标?》经验,为你挑选了4个好方法。

我正在我的WPF应用程序中创建自定义错误对话框,我想使用标准的Windows错误图标.我可以从WPF获取特定于操作系统的图标吗?如果没有,有没有人知道从哪里得到.pngs的透明度?或者知道在Windows中从哪里提取它们?

到目前为止,我的搜索结果都没有.



1> bohdan_trots..:

有一个SystemIcons类,但需要调整WPF需求(即转换IconImageSource).


Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Error.Handle,Int32Rect.Empty,BitmapSizeOptions.FromEmptyOptions()); - 似乎工作得很好,谢谢!
顺便说一句,http://stackoverflow.com/questions/1127647/convert-system-drawing-icon-to-system-media-imagesource,这可能会有所帮助
那个其他线程有四个步骤太多了.使用http://msdn.microsoft.com/en-us/library/system.windows.interop.imaging.createbitmapsourcefromhicon(v=VS.90).aspx

2> Leniel Macca..:

关于使用标准Microsoft图标.

绝大多数开发人员都不知道Visual Studio附带了一个图像库.所以这里有两个突出显示它的链接:

关于使用Microsoft Visual Studio 2010图像库.

关于使用Microsoft Visual Studio 2008图像库.



3> run2thesun..:

这就是我在XAML中使用系统图标的方式:

xmlns:draw="clr-namespace:System.Drawing;assembly=System.Drawing"
...

我使用这个转换器将Icon转换为ImageSource:

public class IconToImageSourceConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        var icon = value as Icon;
        if (icon == null)
        {
            Trace.TraceWarning("Attempted to convert {0} instead of Icon object in IconToImageSourceConverter", value);
            return null;
        }

        ImageSource imageSource = Imaging.CreateBitmapSourceFromHIcon(
            icon.Handle,
            Int32Rect.Empty,
            BitmapSizeOptions.FromEmptyOptions());
        return imageSource;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}



4> Hans Passant..:

在Visual Studio中,使用File + Open + File并选择c:\ windows\system32\user32.dll.打开Icon节点,然后双击103.在我的机器上,这是错误图标.返回,右键单击它并选择"导出"将其保存到文件中.

这是不确定的方式.这些图标也可在Visual Studio中使用.从Visual Studio安装目录,导航到Common7\VS2008ImageLibrary\xxxx\VS2008ImageLibrary.zip + VS2008ImageLibrary\Annotations&Buttons\ico_format\WinVista\error.ico.Visual Studio安装中的redist.txt文件直接显式地赋予您在自己的应用程序中使用此图标的权限.

推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有