本文介绍了将所有系统字体添加到listBox?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
嗨亲爱的
如何在列表框或comboBox中显示计算机上的全部字体?
感谢
Hi dear
how i can show total fonts that is on my computer in a listbox or comboBox?
thanks
推荐答案
List<string> fonts = new List<string>();
foreach (FontFamily font in System.Drawing.FontFamily.Families)
{
fonts.Add(font.Name);
}
并将组合框与列表绑定.
祝你好运
and bind the combobox with the list.
Good luck
cmbFonts.DataSource = System.Drawing.FontFamily.Families.Select(family => family.Name).ToList<string>();
:)
:)
这篇关于将所有系统字体添加到listBox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!