pygtk:如何更改 gtk.TextView 小部件的背景
我想将文本视图小部件的背景设置为黑色,前景设置为白色。
一直在尝试 .modify_bg
和 .modify_fg
方法,但没有一个会影响这个东西的外观。
任何人都可以提出任何建议,还是这是不可能的?
I want to make the background of a textview widget black and the foreground white.
Been trying the .modify_bg
and .modify_fg
methods, but none affect the way this thing looks.
Can anyone suggest anything or is this just not possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 gtk.Widget.modify_text 和 gtk.Widget.modify_base 代替 fg 和 bg。
Use
gtk.Widget.modify_text
andgtk.Widget.modify_base
instead of fg and bg.我解决了一些类似的操作 gtk rcstyles 的问题:
请参阅 gtk.rcstyle at :
bg[state] = color(设置大多数小部件背景使用的颜色。)
I resolved some similar manipulating the gtk rcstyles:
See gtk.rcstyle at:
bg[state] = color (Sets the color used for the background of most widgets.)