
Qt样式表
风语情
没有不可能的事,努力就好了。
展开
-
QSlider样式表设置
QSlider{ border-style:outset; border-radius:10px; height:25px; background-color:#142f54;}QSlider::groove:horizontal{ height:12px; background:rgb(142,139,130); border-ra...原创 2019-11-08 17:58:07 · 590 阅读 · 0 评论 -
QPushButton与QToolButton样式表设置
QPushButton{ background: rgb(76,131,215); color: rgb(255, 255, 255); width: 75px; height: 25px; border-radius:4px;}QPushButton:hover{ background:#1a9b81; color: rgb(220...原创 2019-11-08 17:55:16 · 6517 阅读 · 1 评论 -
QTreeWidget样式表设置
QTreeWidget{ color:rgb(220,220,220); font-size: 12pt; border:1px solid rgb(120,120,120);}QTreeWidget::item:hover{ color:white; }QTreeWidget::item:selected{ color:rgba(2...原创 2019-11-08 17:54:07 · 8027 阅读 · 0 评论 -
QSpinBox样式表设置
QAbstractSpinBox{ border: 1px solid #26609e; font: 10pt "微软雅黑"; color: rgb(255, 255, 255); height:35px; min-width: 10px; }QAbstractSpinBox::up-button{ subcontrol-origin: p...原创 2019-11-08 17:53:22 · 4011 阅读 · 0 评论 -
QComboBox样式表设置
QComboBox{ font: 10pt "微软雅黑"; color: rgb(255, 255, 255); min-width: 20px; width:50px; height:25px; border: 1px solid #26609e;}QComboBox::drop-down{ subcontrol-origin...原创 2019-11-08 17:52:24 · 1164 阅读 · 0 评论 -
QTabWidget样式表设置
QTabWidget { background-color:#0f2033; border-top: 2px solid #C2C7CB; }QTabWidget::pane { /* The tab widget frame */ border-top: 0px solid #C2C7CB; }/* Style the tab using the...原创 2019-11-08 17:51:19 · 3920 阅读 · 0 评论 -
QTableView或QTableWidget样式表设置
QHeaderView::section{ background: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(36, 71, 111, 255), stop:1 rgba(36, 71, 111, 255)); color: rgb(255, 255, 255); font: 7...原创 2019-11-08 17:50:14 · 1721 阅读 · 1 评论 -
QListWidget样式表设置
QListWidget{ color:rgb(200,200,200); border:3px solid gray; padding:20px 0px 0px 0px;}/**列表项*/QListWidget::item{ color:rgb(200,200,200); height:40px; padding-left:20px; ...原创 2019-11-08 17:48:44 · 12640 阅读 · 0 评论 -
菜单栏QMenu样式设置
/*菜单项*/QMenu{ color:rgb(255,255,255); background-color:#0f2033; border:none;}QMenu::item{ color:rgb(255,255,255); background-color:rgb(76,131,215); ...原创 2019-11-08 17:47:28 · 9634 阅读 · 0 评论