0

我想用 GTK+ 3 和 Python 创建一个 Ubuntu 应用程序,但我是 GTK 的新手。

我在下图中有一个 gtkbox 的 css 样式,但是我怎样才能将这种样式添加到我的 GtkBox/GtkVBox 对象中,就像在图像中一样。
我的概念图

注意:此图像由 Photoshop 创建。

4

1 回答 1

0

摘自为什么 CSS 样式在 GtkButton 上不起作用?

cssProvider = Gtk.CssProvider()
cssProvider.load_from_path('style.css')
screen = Gdk.Screen.get_default()
styleContext = Gtk.StyleContext()
styleContext.add_provider_for_screen(screen, cssProvider,
Gtk.STYLE_PROVIDER_PRIORITY_USER) # With the others GTK_STYLE_PROVIDER_PRIORITY values get the same result.
于 2013-07-17T07:10:31.073 回答