File: stylesheet.js

package info (click to toggle)
kjsembed 5.103.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 24,300 kB
  • sloc: cpp: 9,163; javascript: 701; sh: 21; makefile: 3
file content (8 lines) | stat: -rw-r--r-- 178 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8

var button = new QWidget("QPushButton", this );
button.text = "Testing 123";

button.styleSheet = 'QPushButton { color: red ; background-color: blue }';

button.show();
exec();