📄 basic.cpp
字号:
#include <wx/wx.h>/** A basic application that shows an empty frame.*/class BasicApp : public wxApp{public: /** Constructs the frame. */ BasicApp(); /** Shows the frame. @return true */ virtual bool OnInit();private: wxFrame* frame;};DECLARE_APP(BasicApp)IMPLEMENT_APP(BasicApp)BasicApp::BasicApp(){ frame = new wxFrame(NULL, -1, "My First GUI Program");}bool BasicApp::OnInit(){ frame->Show(true); return true;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -