使用 FXFont 类
如何在 FXRuby 上使用 FXFont 类以便更改应用程序上文本的字体和颜色?谢谢!
how do you use the FXFont class on FXRuby so that you can change the font and color of the text on your application? THANKS!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用于文本的字体或字体是与文本颜色不同的概念。
假设我们正在处理 FXLabel 小部件。如果要更改标签使用的字体,可以使用标签的“font”属性进行设置,例如,
另一方面,如果要更改标签的文本颜色,请分配给其“textColor”属性,例如
Hope这有帮助。
The typeface or font used for text is a separate concept from the text color.
Suppose we're dealing with an FXLabel widget. If you want to change the font used for the label, you can set that using the label's "font" attribute, e.g.
On the other hand, if you want to change the label's text color, assign to its "textColor" attribute, e.g.
Hope this helps.