wxWidgets的初体验

/*烟台大学计算机学院学生
*All right reserved.
*文件名称:wxWidgets的初体验
*作者:杨飞
*完成日期:2014年6月2日
*版本号:v1.0
*对任务及求解方法的描述部分:wxWidgets的初体验
*我的程序:*/
#include <wx/wx.h>
class Simple : public wxFrame
{public:
Simple(const wxString& title);
};
Simple::Simple(const wxString& title)
: wxFrame(NULL, wxID_ANY, title, wxDefaultPosition, wxSize(250, 150))
{
Centre();
}
class MyApp : public wxApp
{
public:
virtual bool OnInit();
};
IMPLEMENT_APP(MyApp)
bool MyApp::OnInit()
{
Simple *simple = new Simple(wxT("Simple"));
simple->Show(true);
return true;
}

运行结果:

心得体会:呵呵

你可能感兴趣的:(wxWidgets的初体验)