buttonctrl.h
来自「是自己开发的程序」· C头文件 代码 · 共 30 行
H
30 行
#ifndef BUTTONCTRL_H_INCLUDED
#define BUTTONCTRL_H_INCLUDED
#include <wx/button.h>#include <wx/event.h>extern "C" {class ButtonCtrl: public wxButton{ public: ButtonCtrl(wxWindow *parent, wxWindowID id, const wxString& value, const wxPoint& point, const wxSize& size, long style = 0); ~ButtonCtrl(); private: enum Identifiers { }; void OnFocusSet(wxFocusEvent& event); void OnFocusKill(wxFocusEvent& event); DECLARE_EVENT_TABLE();};}
#endif // BUTTONCTRL_H_INCLUDED
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?