PyQt5中的按钮3-QCommandLinkButton
- QCommandLinkButton介绍
- QCommandLinkButton举例
QCommandLinkButton介绍
- CommandLinkButton 外观像是一个被设置了扁平化的 QPushButton,并且自带了一个向右的图标,以及可进行双行文本显示,这个图标只是默认的,可以通过API来改变。表示按下该控件将打开另一个窗口或者页面。
- 图标和Text的设置和QPushButton相同。
- “副标题”为该按钮的描述部分,所以可以通过setDescription()来设置。
QCommandLinkButton举例
import sys
from PyQt5.QtWidgets import (QApplication, QWidget, QCommandLinkButton)
class DemoCommandLinkButton(QWidget):
def __init__(self):
super().__init__()
self.setWindowTitle('QCommandLinkButton Demo')
self.resize(400, 240)
clbtn = QCommandLinkButton(self)
clbtn.setText('退出')
clbtn.setDescription('点击本按钮,退出应用')
clbtn.clicked.connect(self.slot_close)
def slot_close(self):
self.close()
if __name__ == '__main__':
app = QApplication(sys.argv)
window = DemoCommandLinkButton()
window.resize(300, 200)
window.show()
sys.exit(app.exec())