swtool

 

//如何获得系统字体列表
System.Drawing.Text.InstalledFontCollection fonts=new System.Drawing.Text.InstalledFontCollection();
foreach(System.Drawing.FontFamily ff in fonts.Families)
{
   this.comboBox1.Items.Add(ff.Name);
}

分类:

技术点:

相关文章: