Qt creator 设置按键字体颜色

按键字体颜色设置

ui->ExitpushButton->setStyleSheet("\

                                      QPushButton {\
                                            color: white;\
                                            border-image: url(:/pics/button.png);\
                                            border-width: 12px;\
                                            padding: -12px 0px;\
                                            min-height: 25px;\
                                            min-width: 60px;\
                                            }\
                                      QPushButton:pressed {\
                                            color: lightgray;\
                                            border-image: url(:/pics/button-pressed.png); \
                                            padding-top: -10px;\
                                            padding-bottom: -16px;\
                                            }\
                                      ");

参考:http://www.developer.nokia.com/Community/Wiki/%E4%BD%BF%E7%94%A8Qt_Style_Sheets%E5%88%B6%E4%BD%9CUI%E7%89%B9%E6%95%88


label 字体颜色设置

ui->now_object->setText("<font color=red>chaoche</font>");

你可能感兴趣的:(url,qt)