How to Change the Background Color of QWidget/fa

From Qt Wiki
< How to Change the Background Color of QWidget
Revision as of 16:00, 16 March 2015 by AutoSpider (talk | contribs) (AutoSpider moved page How to Change the Background Color of QWidget Persian to How to Change the Background Color of QWidget/fa: Localisation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

p{direction:rtl;text-align:right}. برای تغییر رنگ پس زمینه widget ها از کد زیر استفاده می کنیم.

h1{direction:rtl;text-align:right}. استفاده از Palette

m_pMyWidget = new QWidget(this);
 m_pMyWidget->setGeometry(0,0,300,100);
 QPalette Pal(palette());
 // set black background
 Pal.setColor(QPalette::Background, Qt::black);
 m_pMyWidget->setAutoFillBackground(true);
 m_pMyWidget->setPalette(Pal);
 m_pMyWidget->show();

h1{direction:rtl;text-align:right}. استفاده از Style Sheet

m_pMyWidget = new QWidget(this);
 m_pMyWidget->setGeometry(0,0,300,100);
 m_pMyWidget->setStyleSheet("background-color:black;");
 m_pMyWidget->show();