欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

C#及WPF获取本机所有字体和颜色的方法

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

本文实例讲述了C#及WPF获取本机所有字体和颜色的方法。分享给大家供大家参考。具体如下:

WPF 获取所有的字体:

System.Drawing.Text.InstalledFontCollection font = new System.Drawing.Text.InstalledFontCollection();
System.Drawing.FontFamily[] array= font.Families;
foreach (var v in array) 
{
   MessageBox.Show(v.Name);
} 

WPF 获取所有的颜色:

Type type = typeof(System.Windows.Media.Brushes);
System.Reflection.PropertyInfo[] info = type.GetProperties();
foreach (System.Reflection.PropertyInfo pi in info)
{
    string colorName=pi.Name;
}

C#获取所有的字体:

InstalledFontCollection MyFont=new InstalledFontCollection(); 
FontFamily[] MyFontFamilies=MyFont.Families; 
ArrayList list = new ArrayList();
int Count=MyFontFamilies.Length; 
for(int i=0;i <Count;i++) 
{ 
 string FontName=MyFontFamilies[i].Name; 
 list.add(FontName);
}

C#获取所有的颜色:

Array colors = System.Enum.GetValues( typeof(KnownColor) );
foreach( object colorName in colors ){
ListItem tmp = new ListItem( colorName.ToString() , colorName.ToString());
 this.styleColor.Items.Add( tmp );
}

希望本文所述对大家的C#程序设计有所帮助。

上一篇:C#使用Mutex简单实现程序单实例运行的方法

栏    目:C#教程

下一篇:C#实现子窗体与父窗体通信方法实例总结

本文标题:C#及WPF获取本机所有字体和颜色的方法

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6975.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有