ウィジェットクラスが1つしかない画像表示のダイアログウィンドウQTableWidget
。私の問題は、ヘッダーの下の境界線(赤い正方形、QHeaderView
クラス)が左/右の色付きの境界線と重なっていることです!私が欲しいのは、赤い四角のセクションを緑の四角として正しく表示することです。
Qt Designer
これが私が使用しているCSSコードです:
QTableView#tableWidget QHeaderView::section:horizontal
{
height: 24px;
border-style: none;
border-left: 1px solid #ecedef;
border-top: 1px solid #161618;
border-right: 1px solid #b1b1b5;
border-bottom: 1px solid #161618;
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #f4f4f6, stop:1 #ceced6);
}
/*
QTableView#tableWidget QHeaderView::section:horizontal:first,
QTableView#tableWidget QHeaderView::section:horizontal:last
{
border-left-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #f4f4f6, stop:1 #ceced6);
}
*/
ありがとう!
更新:念のため、これが拡大画像です...