File indexing completed on 2024-04-28 15:28:40

0001 
0002 var button = new QWidget("QPushButton", this );
0003 button.text = "Testing 123";
0004 
0005 button.styleSheet = 'QPushButton { color: red ; background-color: blue }';
0006 
0007 button.show();
0008 exec();