0
我正在嘗試使用enaml爲我的應用程序創建視圖。我想知道如何設置窗口小部件的背景顏色。我發現我可以使用樣式表爲窗口內的事物設置顏色,但我似乎無法找到設置窗口顏色的方法。如何設置enaml窗口的背景顏色?
enamldef Main(MainWindow):
StyleSheet:
Style:
element = 'PushButton'
Setter:
field = 'background'
value = 'indianred'
title << ""
initial_size = (1000,500)
initial_position = (300,150)
icon = loadIcon(normpath('TitleIcon.png'))
visible = True
always_on_top = True
style_class << "WindowStyle"
MyMenuBar:
pass
Container:
#constraints = [vbox(label, label, spacing=0)]
PushButton:
text = "one"
pass