QTableWidgetsを使用しているアプリを開発していますが、その背景を透明に設定する必要があります。setStyleSheet "background:transparent;"
フォームから試行しましたが、何も起こりませんでした。他に方法はありますか?スクリーンショットを投稿しています
質問する
6528 次
1 に答える
11
あなたは正しい方向に進んでいます。試す:
setStyleSheet("QTableWidget {background-color: transparent;}"
"QHeaderView::section {background-color: transparent;}"
"QHeaderView {background-color: transparent;}"
"QTableCornerButton::section {background-color: transparent;}");
QTableWidget *table = new QTableWidget(latticeView);
table->setRowCount(2);
table->setColumnCount(2);
テーブルウィジェットを作成する前にスタイルシートを設定していることに注意してください。理由はわかりませんが、それは必要なようです。
于 2012-04-25T10:58:08.323 に答える