feat: Display several styles of the operating system through QStyleFactory

This commit is contained in:
muli
2020-02-14 00:09:27 +08:00
parent af5ee36cb5
commit 29359f64b6
4 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include "widget.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}