pygtk:如何更改 gtk.TextView 小部件的背景

发布于 2024-08-15 06:50:18 字数 149 浏览 3 评论 0原文

我想将文本视图小部件的背景设置为黑色,前景设置为白色。

一直在尝试 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

め七分饶幸 2024-08-22 06:50:18

使用 gtk.Widget.modify_text 和 gtk.Widget.modify_base 代替 fg 和 bg。

Use gtk.Widget.modify_text and gtk.Widget.modify_base instead of fg and bg.

意中人 2024-08-22 06:50:18

我解决了一些类似的操作 gtk rcstyles 的问题:

widget.set_name('mywidget')

# Set mywidget internal style.
gtk.rc_parse_string('\
    style "mywidget"\n\
    {\n\
        attribute1 = value1\n\
        attribute2 = value2\n\
    }\n\
    widget "*.mywidget" style "mywidget"')

请参阅 gtk.rcstyle at :

bg[state] = color(设置大多数小部件背景使用的颜色。)

I resolved some similar manipulating the gtk rcstyles:

widget.set_name('mywidget')

# Set mywidget internal style.
gtk.rc_parse_string('\
    style "mywidget"\n\
    {\n\
        attribute1 = value1\n\
        attribute2 = value2\n\
    }\n\
    widget "*.mywidget" style "mywidget"')

See gtk.rcstyle at:

bg[state] = color (Sets the color used for the background of most widgets.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文