Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只有Italic, Normal, Oblique. 但我需要设置我的FontStyle粗体。
Italic
Normal
Oblique
FontStyle
Bold不是字体样式。它是一种字体粗细。见this和this链接。
Bold
this
例如:
control.FontWeight = FontWeights.Bold;
Update:当然,这个答案适用于基于 XAML 的框架(WPF、Silverlight、WinPhone、WinRT)。在其他框架中,粗体可以是样式或其他东西。
Update
myTextBox.Font = new Font(myTextBox.Font, outputTextBox.Font.Style | FontStyle.Bold);