在屏幕上画简单图形和显示图片、处理简单鼠标键盘事件

/***************************************************************
 * Name:      MyApp.h
 * Purpose:   Defines Application Class
 * Author:    PingGe (414236069@qq.com)
 * Created:   2013-10-14
 * Copyright: PingGe (http://www.cnblogs.com/pingge/)
 * License:
 **************************************************************/

#ifndef WXTESTAPP_H
#define WXTESTAPP_H

#include <wx/app.h>

class MyApp : public wxApp          //应用程序类,应用程序的入口点
{
    public:
        virtual bool OnInit(void);  //在应用程序启动时调用,如果返回false,退出应用程序
};

#endif // WXTESTAPP_H
View Code

相关文章:

  • 2022-01-11
  • 2021-08-06
  • 2021-07-21
  • 2022-01-07
  • 2022-12-23
  • 2021-06-03
  • 2021-11-06
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-21
  • 2021-05-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-28
相关资源
相似解决方案