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.
我在 GTK+3 中创建应用程序,我想更改背景颜色,GtkBox但不能在这里代码:
GtkBox
box.modify_bg(Gtk.StateType.NORMAL, color);
在GTK+3 的“常见问题”中是您问题的答案。
在基本形式中,您可以使用:
box.override_background_color(Gtk.StateType.NORMAL, Gdk.RGBA(.5,.5,.5,.5))
在这种情况下,颜色将是柔和的灰色,半透明。可能,您想在draw信号期间绘制它。
draw