如何使用 Compact Framework 将文本加粗
我有一个用 C# 编写的紧凑框架 (3.5) 的应用程序。
我试图在表单上以粗体显示一些文本。
Label
类没有为我提供将文本加粗的选项(我可以将其放大,最终给出粗体外观,但我希望我的文本为 12pt 且粗体。
这可能吗?如果可以,如何实现?
谢谢你的任何想法。
I have an app written in C# for the compact framework (3.5).
I am trying to display some text on the form in bold.
The Label
class does not give me the option to bold my text (I can make it bigger, which eventually gives a bold look, but I want my text 12pt and bold.
Is this possible? If so How?
thanks for any ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
FontStyle 应该适合您
FontStyle should work for you
您可以在设计时完成;)
在 Visual Studio 中,您可以扩展字体属性,以公开名称、字体和样式属性。
您也可以添加
; style=bold
在 Visual Studio 中的字体属性之后。 (或任何与此相关的风格)。如果您继续使用上面的代码,我建议处理旧字体,以防止内存泄漏
You can do it designtime ;)
In visual studio you can extend the font property, to expose the name, font and style property.
Also you can add
; style=bold
after the font property in visual studio. (or any style for that matter).If you keep using the code above, i recommend disposing the old font, to prevent a memory leak