| 1 | #include "UpdateUi.h" |
| 2 | UpdateUi::UpdateUi(const QString& version, const QString& content) |
| 3 | { |
| 4 | ui.setupUi(this); |
| 5 | StyleGroup(); |
| 6 | ui.version_label->setText(version); |
| 7 | ui.content_label->setText(content); |
| 8 | connect(ui.title_close_button, &QPushButton::clicked, this, [this](bool) { close(); }); |
| 9 | move(Qi::widget.main->pos()); |
| 10 | exec(); |
| 11 | } |
| 12 | |
| 13 | void UpdateUi::StyleGroup() |
| 14 | { |