0
我想用GTK + 3和Python創建一個Ubuntu應用程序,但我是GTK的新手。如何在Gtk + 3中添加css樣式到GtkBox
我在下圖中有一個gtkbox的css樣式,但是我怎樣才能將這個樣式添加到我的GtkBox/GtkVBox對象中,就像圖像一樣。
image of my concept
注:此圖片已被Photoshop中創建。
我想用GTK + 3和Python創建一個Ubuntu應用程序,但我是GTK的新手。如何在Gtk + 3中添加css樣式到GtkBox
我在下圖中有一個gtkbox的css樣式,但是我怎樣才能將這個樣式添加到我的GtkBox/GtkVBox對象中,就像圖像一樣。
image of my concept
注:此圖片已被Photoshop中創建。
從Why css style don't work on 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.
採取哪種風格,你是怎麼試試這麼遠嗎? – drahnr