21 lines
275 B
C++
21 lines
275 B
C++
|
#include "stdafx.h"
|
|||
|
|
|||
|
|
|||
|
app::app()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
app::~app()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
bool app::OnInit()
|
|||
|
{
|
|||
|
wxFrame* mainFrame = new wxFrame(nullptr, wxID_ANY, L"Hello World <20> <20>C");
|
|||
|
//wxFrame* mainFrame = new wxFrame(nullptr, wxID_ANY, wcp);
|
|||
|
mainFrame->Show(true);
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
wxIMPLEMENT_APP(app);
|