Hi,
How can I change the forecolor of statusbar in QT? I need to display the messages in statusbar in white color.
Please help me
...............
Printable View
Hi,
How can I change the forecolor of statusbar in QT? I need to display the messages in statusbar in white color.
Please help me
...............
HI,
Have you tried any of this:
QWidget::setFont(QFont(..) ); // your font color
QWidget::setPalette(QPalette(Qt::white,Qt::white);
?