如何读取系统字体、颜色、大小?
发布网友
发布时间:2022-04-26 18:03
我来回答
共1个回答
热心网友
时间:2022-05-03 04:45
先说说获取系统字体的方法:
在System.Drawing命名空间下有个FontFamily类,其下有个静态属性:Families(返回的是一个 FontFamily对象数组)
---注:System.Drawsing.FontFamily是一个密封类。
而在System.Drawing.Text命名空间下有个InstalledFontCollection类,其下也有个属性:Families,不过此时不是静态属性。
---注:System.Drawing.InstalledFontCollection也是一个密封类。
现在分别用这两个东东来获取一下:1//FontFamily获取2//前台有个familyList(DropDownList控件)3for(inti=0;i<FontFamily.Families.Length;i++)4{5familyList.Items.Add(FontFamily.Families[i].Name);6}7//第一种方法简单吧。8//第二种方法:InstalledFontCollection9InstalledFontCollectionifc=newInstalledFontCollection();10foreach(FontFamilyffinifc.Families)11{12familyList2.Items.Add(ff.Name);13}14///也简单^_^====获取系统已安装的颜色呢?
打开MSDN,你会发现,System.Drawing下有个KnownColor的枚举,其中就列出了N多颜色值哦,现在我们把它读出来~~1//System.Drawing.KnownColor2string[]colors=Enum.GetNames(typeof(System.Drawing.KnownColor);3foreach(stringcolorincolors)4{5ListItemlist=newListItem(color);6list.Attributes.Add("style","color:"+color);7colorList.Items.Add(list);8}=====获取字体大小:
字体大小应该也和颜色一样有个枚举存储。但此时,它却在System.Web.UI.WebControls下了,大名叫:FontSize代码如下:1//System.Web.UI.WebControls.FontSize2string[]sizes=Enum.GetName(typeof(System.Web.UI.WebControls.FontSize));3foreach(stringsizeinsizes)4{5sizeList.Items.Add(size);6}///随便提一下:Enum.GetNames(Type)返回的是一个字体串数组,而Enum.GetValues(Type)返回的是Array对象。
---这么简短的步骤,我想,火星*概还等不及UFO发动就完成了吧。。。