border-image:url(图片路径);//设置背景图 background-image:url(图片路径);//设置背景图 }QLabel:hover//设置鼠标悬停时的样式 {}QPushButton/QToolButton QPushButton与QToolButton的样式设置相同,现以QToolButton为例QToolButton{#按钮正常显示的样式 margin-right:6px;//与右侧的距离 border-image:url(此...
不过 QSS 也支持border-image,使用border-image就能很快的做出上面的效果: .QPushButton { border-width: 12px 12px 12px 12px; border-image: url(:/img/round-button.png) 12 12 12 12 repeat stretch; min-height: 24px; /* 避免按钮太小 */ padding: -10px 0 -10px 0; /* 调整文字与边界的...
border-image: url(image/system/button/scroll-up-arrow.png); } QScrollBar::down-arrow:vertical { border-image: url(image/system/button/scroll-down-arrow.png); } QLineEdit#chat_edit{ background-color: rgba(20,20,20,255); color: white; border: 10px transparent; height: 20px; border-ima...
QPushButton {border-width: 4px; border-image: url(button.png) 4 4 4 4 stretch stretch; } 另外,“边框图片”还应该含有alpha通道,以使背景能够在边角处露出来。 6. 控制大小 min-width和min-height两个属性可以用来指定一个部件的内容区域的最小大小。这两个值将影响部件的minimumSizeHint(),并在布局时...
border :2pxsolidgray; border-radius:6px; background-color:solidgray; min-height :12px; } QScrollBar::up-arrow:vertical { border-image:url(image/system/button/scroll-up-arrow.png); } QScrollBar::down-arrow:vertical { border-image:url(image/system/button/scroll-down-arrow.png); ...
QLabel#m_icon{border-image:url(:/res/haiyang.png);/*图片路径*/min-width:40px;/*最小宽度*/min-height:40px;/*最小高度*/max-width:40px;/*最大宽度*/max-height:40px;/*最大高度*/background-position:center;/*居中显示*/background->attachment:fixed;/*固定*/background-repeat:repeat-n;...
QPushButton { border-image: url(:/ButtonNormal.png); } QPushButton:hover { border-image: url(:/ButtonHover.png); } QPushButton:pressed { border-image: url(:/ButtonPressed.png); } 设置QPushButton类型的Widget显示图片的url地址 :hover 表示鼠标滑过时的状态 这里我们显示ButtonHover.png :presse...
border: 1px solid #000000; } 3.设置选中和未选中状态下的文字颜色: QCheckBox:checked { color: #00FF00; } QCheckBox:unchecked { color: #000000; } 4.设置选中和未选中状态下的图标: QCheckBox::indicator:checked { image: url(checked.png); ...
border:none; /*去除边界线*/ } /***/ 另外代码里设置好QTableWidget的其他属性: void EventRecordDlg::initTableWdgt(QTableWidget* tableWidget,int hWidth1,int hWidth2,int hWidth3,int hWidth4) { /*! *设置编辑框的垂直滑动条的样式 * (注意,此处QSS设置效果在设计器里手动...
border:none; background-color: transparent; border-image:url(:/ImageE/return.png);min-...