⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listpanel.h

📁 是自己开发的程序
💻 H
字号:
#ifndef LISTPANEL_H_INCLUDED
#define LISTPANEL_H_INCLUDED
#include "Common.h"#include "Log.h"extern "C" {class ListPanel: public wxPanel, public Log{	public:		ListPanel(wxWindow *parent,		        const wxPoint& point,                const wxSize& size,                long style);		~ListPanel();	private:        enum Identifiers		{		    ID_Button_Disk = ID_ListPanel_SubControl,		    ID_Button_Network,		    ID_Button_PlayBack,		    ID_Button_Start,		    ID_Button_Stop,		    CLIENT_ID		};		wxButton* pButtonDisk;		wxButton* pButtonNetwork;		wxButton* pButtonPlayBack;		wxButton* pButtonStart;		wxButton* pButtonStop;		void OnPaint(wxPaintEvent& event);		void OnButtonDisk(wxCommandEvent& event);		void OnButtonNetwork(wxCommandEvent& event);		void OnButtonPlayBack(wxCommandEvent& event);		void OnButtonStart(wxCommandEvent& event);		void OnButtonStop(wxCommandEvent& event);		DECLARE_EVENT_TABLE();};}


#endif // LISTPANEL_H_INCLUDED

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -