15 lines
233 B
C++
15 lines
233 B
C++
|
//
|
||
|
// Created by sinxm on 24-8-5.
|
||
|
//
|
||
|
|
||
|
#include "MainFrame.h"
|
||
|
|
||
|
CMainFrame::CMainFrame(const wxString& title) : wxFrame(nullptr, wxID_ANY, title)
|
||
|
{
|
||
|
InitFrame();
|
||
|
}
|
||
|
|
||
|
void CMainFrame::InitFrame()
|
||
|
{
|
||
|
panel_ = new CMainPanel(this);
|
||
|
}
|