当前位置: 代码迷 >> ASP.NET >> ASP.NET中DropDownList如何绑定所有的系统字体
  详细解决方案

ASP.NET中DropDownList如何绑定所有的系统字体

热度:4678   发布时间:2013-02-25 00:00:00.0
ASP.NET中DropDownList怎么绑定所有的系统字体
我找了好久,就是不知道fontfamily中得到所有的字体名字!哪位高手教一下

------解决方案--------------------------------------------------------
InstalledFontCollection MyFont = new InstalledFontCollection();
FontFamily[] MyFontFamilies = MyFont.Families;
int Count = MyFontFamilies.Length;
for (int i = 0; i < Count; i++)
{
Console.WriteLine(MyFontFamilies[i].Name);
}
EnumFontFamilies 
 
  相关解决方案