我想画一个QPushButton
(可点击等(,但要让它看起来像QLabel
。(另一种方法是,我想要一个可点击的标签,即一个行为像按钮的标签,但这似乎更难。(
我试过button.setStyleSheet("QLabel")
,不起作用。有没有办法告诉按钮使用另一个样式类?或";偷窃;QLabel
的风格?
如果可能的话,我希望避免重新定义整个样式(我不拥有样式表,Qt嵌入在第三方应用程序中(,除非这是微不足道的。
编辑:我最终使用了@musicamante的样式表解决方案,其中添加了text-align: left
(按钮居中,标签不居中(和:hover/:pressed
颜色(青色/蓝色看起来像程序员的艺术,但起到了一定的作用:(:
QPushButton {
border: none;
background: transparent;
text-align: left;
color: palette(window-text);
}
QPushButton:hover {
color: cyan;
}
QPushButton:pressed {
color: blue;
}
通常不建议像标签一样设计按钮的样式,因为它不会使按钮的状态变得清晰,尤其是当鼠标按钮在按钮矩形外按下并释放时。
在任何情况下,将border
属性设置为none
就足够了,这也将删除背景。为了安全和一致,您可以使背景透明(某些样式可能会覆盖它(,并确保使用调色板的WindowText
颜色角色(而不是ButtonText
角色(:
button.setStyleSheet("""
border: none;
color: palette(window-text);
background: transparent;
""")
不过,制作一个可点击的标签并没有那么难,而且它的好处是允许使用富文本内容,而QPushButton无法做到这一点
class ClickableLabel(QLabel):
clicked = Signal()
def mousePressEvent(self, event):
super(ClickableLabel, self).mousePressEvent(event)
if event.button() == Qt.LeftButton:
self.clicked.emit()
或者,为了提供与按钮行为的一致性(如上所述,如果鼠标按钮在按钮矩形的边界内释放,则"点击"被认为是有效的(:
class ClickableLabel(QLabel):
clicked = Signal()
def mouseReleaseEvent(self, event):
super(ClickableLabel, self).mouseReleaseEvent(self, event)
if event.button() == Qt.LeftButton and event.pos() in self.rect():
self.clicked.emit()
您可以创建一个自定义QLabel,首先public继承一个QLabel然后重载void mouseReleaseEvent(QMouseEvent *e)
void mouseReleaseEvent(QMouseEvent *e){
if(e.button == Qt::LeftButton){
//emit a signal or you want to do when the label are clicked
}
}