对于以下样式表代码段,我可以使用窗口小部件的mode
方法从代码中设置setProperty
的值。如何在样式表本身中设置其初始值?
QPushButton[mode="large"] {
font-size: 30px;
}
QPushButton[mode="small"] {
font-size: 10px;
}
答案 0 :(得分:0)
如果您知道按钮的ID,则可以像在任何样式表中一样设置它
e.g。
QPushButton#menuButton1 {
background-color: red;
border-style: outset;
border-width: 2px;
border-radius: 10px;
border-color: beige;
font: bold 14px;
min-width: 10em;
padding: 6px;
}