qtscript-opensource-src/examples/script/helloscript/helloscript.js

6 lines
109 B
JavaScript

//! [0]
button.text = qsTr('Hello World!');
button.styleSheet = 'font-style: italic';
button.show();
//! [0]