如何摆脱未知的边界Qt

时间:2018-04-20 20:28:50

标签: c++ qt qtstylesheets

我已经尝试了一切来摆脱图片中圈出的这两个边界。但无论我在CSS中做什么,这两个边界都不会去,奇怪的是它只在右边和底部。有人有解决方案吗?

我在一个标签内的一个QListWidget。

Screenshot

编辑:QSS代码

QWidget{
background-color:#282828;
margin: 0px;
padding: 0px;
border: 0px;
}

QMainWindow{
border:0px;
background-color:white;
margin: 0px;
}
QListWidget{
    font: 25pt "Simplifica";
    font-size: 30px;
    font-style: normal;
    font-variant: normal;
    font-weight:100;
    background-color:#3A3A3A;
    color: white;
    alternate-background-color:#0C0032;
    margin: 0px;
}

QTabWidget{
font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
border: 0px;
background-color:#3A3A3A;
margin: 0px;
}

QTabBar::tab{
margin-top: 5px;
margin-bottom: 5px;
padding:5px;
}
QTabBar::tab:selected { 
color: white;
background-color:#190061;

}

QTabBar::tab:!selected {
color: white;
background-color: #282828;
}

0 个答案:

没有答案