需要引用命名空间using System.Drawing.Text;.... //获取系统字体:InstalledFontCollection fc = new InstalledFontCollection();foreach( FontFamily font in fc.Families ){ ListItem tmp = new ListItem( font.Name , font.Name );this.styleFont.Items.Add( tmp );}//获取系统预定义颜色:Ar…
原文 Creating a ListBox that Shows All Predefined System Colors 该System.Windows.SystemColors类包含了一系列揭露当前预定义系统颜色静态属性.这些物业有三胞胎.对于每个系统颜色Xxx,有XxxBrush,XxxBrushKey和XxxColor属性. 我们可以通过构建一组画笔然后将集合绑定到ListBox,轻松创建一个小的WPF应用程序来显示当前的系统颜色. 这是最终结果: 下面是我用来创建列表的代码. 我从一个…