标签:
//如何获得系统字体列表
System.Drawing.Text.InstalledFontCollection fonts=new System.Drawing.Text.InstalledFontCollection();
foreach(System.Drawing.FontFamily ff in fonts.Families)
{
this.comboBox1.Items.Add(ff.Name);
}
标签:
原文地址:http://www.cnblogs.com/swtool/p/5076088.html