qt半透明圆角下拉框

  • Post author:
  • Post category:qt
  • Post comments:0评论

qt半透明圆角下拉框

QComboBox uses the model/view framework for its popup list and to store its items. By default a QStandardItemModel stores the items and a QListView subclass displays the popuplist.

QComboBox 使用模型/视图框架作为其弹出列表并存储其项目。默认情况下,QStandardItemModel 存储项目,QListView 子类显示弹出列表。

qss

/*下拉框*/
QComboBox
{
    border-radius: 3px;
    color: rgb(0,0,0);
    border: 1px solid #c2c2c2;;
    padding-top: 2px;
    padding-left: 2px;
    background-color: transparent;
}
QComboBox:disabled
{
    color:rgb(160,160,160);
    background-color: rgba(0, 0, 0, 0.3);
}
/*点击combox的样式*/
QComboBox:on
{
    color: rgb(0, 0, 0);
    padding-top: 4px;
    padding-left: 4px;
    background-color: rgba(0, 0, 0, 0.0);
    border: 1px solid #c2c2c2;
    border-radius: 5px;
}
/*下拉框的样式*/
QComboBox QAbstractItemView 
{
    height: 30px;   
    font-size: 16px;
    outline: 0px solid gray;  /*取消选中虚线*/
    border: 1px solid rgb(66,66,66);  
    color: rgb(0,0,0);
    background-color:rgba(0, 0, 0, 0.0);
}
 /*选中每一项高度*/
QComboBox QAbstractItemView::item
{  
    color: rgb(255,255,255);
    background-color:  rgba(0, 0, 0, 0.3);
}
/*选中每一项的字体颜色和背景颜色*/
QComboBox QAbstractItemView::item:selected 
{
    color:rgba(75,175,255, 1);   
    background-color:  rgba(0, 0, 0, 0.0);
}
 /*下拉箭头的边框*/
QComboBox::drop-down 
{
    border:none;
}
 /*下拉箭头样式*/
QComboBox::down-arrow 
{
    image: url(./res/comboboxdown.png);
}
 /*下拉箭头点击样式*/
QComboBox::down-arrow:on
{
    image: url(./res/comboboxdown1.png);
}

cpp

对话框类构造函数里面调用

// 重新设置QListView,否则qss QComboBox QAbstractItemView不生效
ui->comboBox->setView(new QListView(ui->comboBox)); 
// 不设置Popup则列表不能弹出;不设置FramelessWindowHint则不能无边框;不设置NoDropShadowWindowHint则右下角有默认三角形阴影。
ui->comboBox->view()->parentWidget()->setWindowFlags(Qt::Popup | Qt::FramelessWindowHint| Qt::NoDropShadowWindowHint);
// 设置背景透明,否则qss透明度不生效
ui->comboBox->view()->parentWidget()->setAttribute(Qt::WA_TranslucentBackground);

1

文章作者: 张拓
文章链接: http://www.xssl.online/qt%e5%8d%8a%e9%80%8f%e6%98%8e%e5%9c%86%e8%a7%92%e4%b8%8b%e6%8b%89%e6%a1%86/
版权声明: 本博客所有文章除特别声明外,均采用CC BY-NC-SA 4.0 许可协议。转载请注明来自 张拓的博客
浏览次数: 494

张拓

陕西西安蓝田张拓QQ1070410059。一生所求不过“心安”二字。 然,尘世多纷扰。

发表回复