是否可以像这样设置 ComboBoxItem 的 FontWeight ?
comboCategory.Items.Add("foo");
(comboCategory.Items[0] as ComboBoxItem).FontWeight = FontWeights.Bold;
Visual Studio 喜欢这段代码,但在运行时我得到一个 NullReferenceException。
或者我可以使用这段代码,但我正在寻找更聪明的东西:
ComboBoxItem temp = new ComboBoxItem();
temp.FontWeight = FontWeights.Bold;
temp.Content = "foo";
comboCategory.Items.Add(temp);