gpt4 book ai didi

c# - 用可用字体列表填充 ComboBox

转载 作者:IT王子 更新时间:2023-10-29 03:59:48 25 4
gpt4 key购买 nike

如何用系统中所有可用字体的列表填充组合框?

最佳答案

您可以使用 System.Drawing.FontFamily.Families 获取可用字体。

List<string> fonts = new List<string>();

foreach (FontFamily font in System.Drawing.FontFamily.Families)
{
fonts.Add(font.Name);
}

// add the fonts to your ComboBox here

关于c# - 用可用字体列表填充 ComboBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3426089/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com