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
BoldFontStyle ではありません。フォントの太さです。リンクを参照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);