2012-11-19 163 views

回答

6

Bold不是FontStyle。这是一个字体重量。请参阅thisthis链接。

例如:

control.FontWeight = FontWeights.Bold; 

Update:当然此答案是用于基于XAML框架(WPF,Silverlight中,WinPhone,WinRT的)。在其他框架中,大胆可以是风格或其他。

1
myTextBox.Font = 
    new Font(myTextBox.Font, outputTextBox.Font.Style | FontStyle.Bold); 
相关问题