2025-05-05 23:22:43 +08:00
|
|
|
#include "UserInterface.h"
|
|
|
|
|
2025-05-08 21:13:36 +08:00
|
|
|
UserInterface::UserInterface(const wxString& title) : wxFrame(nullptr, wxID_ANY, title, wxDefaultPosition, wxSize(800, 600))
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2025-05-05 23:22:43 +08:00
|
|
|
UserInterface::~UserInterface()
|
|
|
|
{
|
2025-05-08 21:13:36 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserInterface::InitUI()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserInterface::InitData()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|