📄 buttonctrl.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -