• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#中如何取得并使用Windows系统图标

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

在系统弹出对话框中往往带有Information、Question、Warnning、Error等系统图标,由于这些图标是系统自带的,所以可以为我们自己程序所用。

System.Drawing命名空间中有一个SystemIcons类,以静态属性方式提供了使用系统图标的便捷途径:

Public Properties

  Name Description
Application Gets an Icon object that contains the default application icon (WIN32: IDI_APPLICATION).
Asterisk Gets an Icon object that contains the system asterisk icon (WIN32: IDI_ASTERISK).
Error Gets an Icon object that contains the system error icon (WIN32: IDI_ERROR).
Exclamation Gets an Icon object that contains the system exclamation icon (WIN32: IDI_EXCLAMATION).
Hand Gets an Icon object that contains the system hand icon (WIN32: IDI_HAND).
Information Gets an Icon object that contains the system information icon (WIN32: IDI_INFORMATION).
Question Gets an Icon object that contains the system question icon (WIN32: IDI_QUESTION).
Warning Gets an Icon object that contains the system warning icon (WIN32: IDI_WARNING).
WinLogo Gets an Icon object that contains the Windows logo icon (WIN32: IDI_WINLOGO).

 

需要注意的是,它是属于System.Drawing命名空间的,就是说它是GDI+的函数。

要在WPF中使用系统图标也是一件非常困难的事,微软提供了WPF的矢量绘图系统,可是它与传统的GDI、GDI+之间的转换并不是很全面和便利,要为WPF中的Image控件的Source指定图片数据源,你需要使用System.Windows.Interop下的Imaging来做转换:

Icon icon = System.Drawing.SystemIcons.Information;

BitmapSource source1 = Imaging.CreateBitmapSourceFromHIcon(icon.Handle,new Int32Rect(0,0,32,32), BitmapSizeOptions.FromWidth(32));

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
用C#中的Timing类测试时间发布时间:2022-07-13
下一篇:
“undefined reference to”c++ template发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap