Update 更新文档

This commit is contained in:
2026-02-25 23:01:42 +08:00
parent 40aff32fb0
commit 80518309a7
679 changed files with 4611263 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include "QMainwindow.h"
#include <QtWidgets/QApplication>
#include "BZStruct.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setWindowIcon(QIcon(":/QMainwindow/main.ico"));
QFile styleFile("D:\\Projects\\Trade\\QTradeProgram\\QMainwindow\\styles\\dark_theme.qss");
if (styleFile.open(QIODevice::ReadOnly | QIODevice::Text))
{
}
qRegisterMetaType<BigOrderInfo>("BigOrderInfo");
qRegisterMetaType<BigOrderInfo>("BigOrderInfo&");
QMainwindow w;
w.setWindowIcon(QIcon(":/QMainwindow/main.ico"));
w.show();
return a.exec();
}