// Name: minimal.cpp// Purpose: Minimal wxWidgets sample// Author: Julian Smart#include "wx/wx.h"// Declare the application class//定义应用程序类class MyApp : public wxApp{public: // Called on application startup //这个函数将会在程序启动的时候被调用 virtual bool OnInit();};// Declare our main frame... Read More
posted @ 2013-10-13 22:12 瓶哥 Views(985) Comments(0) Diggs(0) Edit