开始外观修改

This commit is contained in:
2022-07-15 11:05:58 +08:00
parent 349d296bdf
commit 66784bae62
48 changed files with 573 additions and 2 deletions

27
VM-source/mainwindow.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_browser_clicked();
void on_install_clicked();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H