摘要: //使用QLocale加载多语言 localeCombo = new QComboBox; int curLocaleIndex = -1; int index = 0; for (int _lang = QLocale::C; _lang <= QLocale::LastLanguage; ++_ 阅读全文
posted @ 2021-12-21 21:29 osbreak 阅读(105) 评论(0) 推荐(0) 编辑
摘要: calendar = new QCalendarWidget; calendar->setMinimumDate(QDate(1900, 1, 1)); calendar->setMaximumDate(QDate(3000, 1, 1)); QTextCharFormat format; form 阅读全文
posted @ 2021-12-21 21:14 osbreak 阅读(256) 评论(0) 推荐(0) 编辑
摘要: // 通过指针绑定槽函数Button *createButton(const QString &text, const char *slotFunc) { Button *button = new Button(text); connect(button, SIGNAL(clicked()), th 阅读全文
posted @ 2021-12-21 21:01 osbreak 阅读(170) 评论(0) 推荐(0) 编辑