摘要:
QWizard中运行时默认按钮在编译前设计界面的时候是显示中文的,运行的时候就变成英文了。。后来是发现国际化的时候有问题,解决办法如下:在main.cpp里加: QTranslator* translator = new QTranslator(NULL); translator->load("/opt/qt_zh_CN.qm"); a.installTranslator(translator);搞定,qt_zh_CN文件下载地址在这里:http://files.cnblogs.com/sankye/qt_ZH.rar 阅读全文
2013年11月27日 #
摘要:
默认的按钮又小又丑,想改大点漂亮点。百度没百出来,最后用google在这里:http://stackoverflow.com/questions/16425575/change-qwizard-buttons-sizeBetter is to customize user interface using QSS (Qt Style Sheet). You can read your qss file and setup stylesheet for the whole application usingQApplication::setStyleSheet().Also you can set 阅读全文