我想在我的listBox
. 我也对字体使用相同的东西,但我不知道颜色。我的意思是,我不知道如何枚举所有已知的颜色。
foreach (FontFamily F in Fonts.SystemFontFamilies)
{
ListBoxItem l = new ListBoxItem();
l.Content = F.ToString();
l.FontFamily = F;
listbox1.Items.Add(l);
}
如何做同样的事情Color
?