This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Вы ранее привлекались за хранение данных в глобальных переменных? | |
Вы когда-нибудь делали .Net за деньги? | |
Сформулируйте зависимость времени исправления критического бага от seniority присутствующего менеджера | |
В своём резюме вы указали знание php. вам не стыдно? | |
Перед вами кисть, холст и мольберт. напишите компилятор |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//read the UI file and create a form out of it | |
var loader = new QUiLoader(null); | |
var file = new QFile(pluginPath + "/my.ui"); | |
file.open(QIODevice.OpenMode(QIODevice.ReadOnly, QIODevice.Text)); | |
form = loader.load(file, null); | |
//initialize some widget value if necessary | |
form.verticalLayoutWidget.myLabel.text = curScore.title; | |
form.verticalLayoutWidget.myLabel2.text = curScore.composer; |