【目的】
- 學習在CSS樣版的用法。
【Tips】
- 通常都是透過 setStyleSheet 來指定 css 樣板。
【程式】
- main.c
#include <QtGui/QApplication> #include <QtGui/QLabel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel label("Hello, world!"); label.setStyleSheet("background-color: yellow"); label.show(); return app.exec(); }
【結果】
【參考】
- Supported HTML Subset
http://doc.qt.nokia.com/4.6/richtext-html-subset.html - Qt Style Sheets
http://doc.trolltech.com/4.3/stylesheet.html
【問題】
- 如何將相關的元件定義一樣的樣版。而不用一個一個指定?