#include "FTPTrans.h" #include int main(int argc, char *argv[]) { #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif QApplication a(argc, argv); #ifdef _WIN32 QFont font("Microsoft YaHei", 10); a.setFont(font); a.setStyle("windows xp"); #endif FTPTrans w; w.show(); return a.exec(); }