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.
Fontstyle.Bold是否可以使用and务实地创建新字体FontStyles.Oblique?
Fontstyle.Bold
FontStyles.Oblique
虽然FontStyles.Oblique不被认为是我的一种方法(导入系统?):(
如果您想要将字体设置为粗体和斜体(即两者)。然后你可以使用
FontStyle newFontStyle = new FontStyle(); newFontStyle = FontStyle.Regular; newFontStyle = FontStyle.Bold | FontStyle.Italic;
我希望这有帮助。
笔记。这是假设您使用的是 WinForms。