QWidget#widgetViewVedio { background-color:rgba(0,48,77,0.7); border-image:url(:/FaceMatch/Resources/pic/viewbackin.png); } 或者直接在代码中设置 ui.widgetViewVedio->setStyleSheet(QLatin1String("QWidget#widgetViewVedio\n" "{\n" " background-color:rgba(0,48,77,0.7);\n" " border-ima...
如果想实现窗体内容部件的透明效果,只需在设置其背景色时指定alpha值即可,例如: QPushButton{background-color:rgba(255,255,255,100)} 其中rgba()中的a就是指alpha,取值为0〜255,取值为0时完全透明,取值为255时完全不透明。这里a的值为100,这样会出现半透明的效果,因为前面的r(红)、g (绿)、b(蓝)的...
iLabel->setStyleSheet("background-color: rgba(97%,80%,9%,50%)"); } 1. 2. 3. 4. 5. 6. 2)设置背景图片 MainWin::MainWin() { this->setStyleSheet("background-image:url(:/bmp/IMG_0345.JPG)"); iLabel = new QLabel(this); iLabel->setStyleSheet("background-image:url(:/bmp/12572...
font-weight:normal; color:rgba(255,255,255,1); background-color: rgba(0,18,41,0); } QLineEdit { font-size:22px; font-family:Microsoft YaHei; font
QWidget和QQuickItem都有一个背景(background),这个背景可以是纯色,也可以是图片,甚至可以是动画。背景是用户界面的重要组成部分,它可以影响用户界面的视觉效果和用户体验。 1.1.2 背景图片和背景色 背景图片(background image)和背景色(background color)是设置背景的两种常见方法。背景图片可以是任何格式的图片文件,...
1、color:用于呈现文本的颜色。如果未设置此属性,则默认值为QWidget :: foregroundRole设置的值(通常为黑色)。 2、selection-background-color:所选文本或项目的背景。如果未设置此属性,则默认值是为调色板的Highlight角色设置的值。例: QTextEdit { selection-background-color: darkblue } ...
setStyleSheet("background-color: rgba(255, 255, 255, 50);"); 这里,我们使用RGBA颜色模型,其中A(Alpha)用于设置透明度。 4. 使用setAttribute和setAutoFillBackground方法 setAttribute(Qt::WA_TranslucentBackground);setAutoFillBackground(false); 这种方法通常用于使窗体背景透明,同时保留控件的不透明度。
继承QRadioButton开始的样式并且添加,背景色为天蓝色,提升透明度到80%,增加边框为2px的凹陷透明边框。 /*鼠标点击按钮*/QRadioButton:pressed{background-color:rgba(165,205,255,90%);border:4px outsetrgba(36,36,36,0);} 继承QRadioButton开始的样式并且添加,背景颜色透明度提升至90%,增加4px透明边框。
color: rgb(120, 120, 120); } 1. 2. 3. 4. 5. 6. 登录按钮的qss美化 #pushButton{ background-color: rgb(99, 188, 255); color: rgb(255, 255, 255); border-radius: 5px; font-size:14px; } #pushButton:hover{ background-color: rgb(99, 170, 255); ...
("background-color:rgba(0,0,0,0);");QHBoxLayout*pInfoLayout=newQHBoxLayout();pInfoLayout->setSpacing(0);pInfoLayout->setContentsMargins(0,0,0,0);pInfoLayout->addWidget(m_pPosInfoLabel);m_pPosInfoWidget->setLayout(pInfoLayout);//初始化信号槽connect(m_pImageItem,&CustomImageItem::RGB...