Skip to content

Instantly share code, notes, and snippets.

@vovythevov
Last active December 21, 2015 20:18
Show Gist options
  • Save vovythevov/6360319 to your computer and use it in GitHub Desktop.
Save vovythevov/6360319 to your computer and use it in GitHub Desktop.
Tech Tip Qt Styles: Very very simple style example
//----------------------------------------------------------------------------
int main(int argc, char *argv[])
{
QApplication::setStyle("plastique");
QApplication app(argc, argv);
QSpinBox spinBox;
spinBox.show();
return app.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment