代码之家  ›  专栏  ›  技术社区  ›  RandomEngy

如何在我的wpf应用程序中使用标准的windows警告/错误图标?

  •  40
  • RandomEngy  · 技术社区  · 15 年前

    我正在我的wpf应用程序中创建自定义错误对话框,我想使用 standard windows error icon . 我可以从wpf获取操作系统特定的图标吗?如果没有,有人知道哪里可以买到透明的PNG吗?或者知道从窗口的哪里提取它们?

    到目前为止,我的搜索没有找到任何结果。

    10 回复  |  直到 6 年前
        1
  •  33
  •   Vijay Chavda    8 年前

    有一个 SystemIcons 类,但它需要根据wpf的需要进行调整(即转换 Icon ImageSource )

        2
  •  29
  •   Leniel Maccaferri    15 年前

    关于使用 Standard Microsoft Icons .

    绝大多数开发人员不知道visual studio附带了一个图像库。这里有两个突出的链接:

    关于使用 Microsoft Visual Studio 2010 Image Library .

    关于使用 Microsoft Visual Studio 2008 Image Library .

        3
  •  8
  •   run2thesun    9 年前

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

    xmlns:draw="clr-namespace:System.Drawing;assembly=System.Drawing"
    ...
    <Image Source="{Binding Source={x:Static draw:SystemIcons.Warning},
            Converter={StaticResource IconToImageSourceConverter},
            Mode=OneWay}" />
    

    我使用此转换器将图标转换为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
  •  6
  •   Hans Passant    15 年前

    在visual studio中,使用file+open+file并选择c:\windows\system32\user32.dll。打开图标节点并双击103。在我的机器上那是错误图标。返回,右键单击它并选择导出以将其保存到文件中。

    这是一种不确定的方式。这些图标在visual studio中也可用。从Visual Studio安装目录中,导航到common7\vs2008imagelibrary\xxxx\vs2008imagelibrary.zip+vs2008imagelibrary\annotations&buttons\ico\u format\winvista\error.ico。visual studio安装中的redist.txt文件直接显式地授予您在自己的应用程序中使用此图标的权利。

        5
  •  4
  •   Community CDub    7 年前

    如果默认大小为OK,则可以使用.NET的SystemIcons类大致执行前三个步骤,请参见 modosansreves answer

    所以可以这么简单:

     Imaging.CreateBitmapSourceFromHIcon(SystemIcons.Error.Handle)
    
        6
  •  2
  •   DileriumL    9 年前

    使用此:

    using System;
    using System.Drawing;
    using System.Windows;
    using System.Windows.Interop;
    using System.Windows.Markup;
    using System.Windows.Media.Imaging;
    
    using Extensions
    {
        [ContentProperty("Icon")]
        public class ImageSourceFromIconExtension : MarkupExtension
        {
            public Icon Icon { get; set; }
    
            public ImageSourceFromIconExtension()
            {
            }
    
            public ImageSourceFromIconExtension(Icon icon)
            {
                Icon = icon;
            }
    
            public override object ProvideValue(IServiceProvider serviceProvider)
            {
                return Imaging.CreateBitmapSourceFromHIcon(Icon.Handle, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());
            }
        }
    }
    

    不要忘记从全局位置添加对项目的System.Drawing引用。

    然后在您的xaml中使用这个:

    <WindowOrSomething x:Class="BlaBlaWindow"
        xmlns:draw="clr-namespace:System.Drawing;assembly=System.Drawing"
        xmlns:ext="clr-namespace:Extensions">
        <Image Source="{ext:ImageSourceFromIcon {x:Static draw:SystemIcons.Error}}"/>
    </WindowOrSomething>
    
        7
  •  1
  •   Andreas Rejbrand    15 年前

    你不能简单地使用windows api吗?

    Delphi示例:

    procedure TForm1.FormClick(Sender: TObject);
    var
      errIcon: HICON;
    begin
      errIcon := LoadIcon(0, IDI_ERROR);
      DrawIcon(Canvas.Handle, 10, 10, errIcon)
    end;
    
        8
  •  0
  •   Hun1Ahpu    15 年前

    你可以这样画:

    Graphics g = this.CreateGraphics();
    g.DrawIcon(SystemIcons.Question, 40, 40);
    
        9
  •  0
  •   JKennedy Ziyad Godil    10 年前

    使用 SystemIcons 把它们转换成 ImageSource 像这样:

    try   
    {
        var temp = SystemIcons.WinLogo.ToBitmap();  //Your icon here
        BitmapImage bitmapImage = new BitmapImage();
        using (MemoryStream memory = new MemoryStream())
        {
           temp.Save(memory, ImageFormat.Png);
           memory.Position = 0;
           bitmapImage.BeginInit();
           bitmapImage.StreamSource = memory;
           bitmapImage.CacheOption = BitmapCacheOption.OnLoad;
           bitmapImage.EndInit();
        }
        this.Icon = bitmapImage;
    }
    catch (Exception ex)
    {
        this.Icon = null;
    }
    
        10
  •  0
  •   David Coleman    6 年前

    将systemicons.error等转换为.png(保持透明度),然后将输出添加到资源中,并在wpf图像控件中照常使用。

        System.Drawing.SystemIcons.Error.ToBitmap().Save("Error.png", System.Drawing.Imaging.ImageFormat.Png);