Files
hantai_project/code/qt_lvgl/mainwindow.cpp
T
2026-02-25 18:34:49 +08:00

15 lines
222 B
C++

#include "mainwindow.h"
#include "./ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}