loginpanel.h

来自「是自己开发的程序」· C头文件 代码 · 共 47 行

H
47
字号
#ifndef LOGINPANEL_H
#define LOGINPANEL_H

#include "Common.h"#include <wx/dialog.h>#include <wx/statbox.h>#include <wx/stattext.h>#include "EditCtrl.h"#include "ButtonCtrl.h"#include "mysql.h"#define szDB "af"#define MYSQL_PORT_SVR 3306
extern "C" {
class LoginPanel: public wxPanel
{
	public:
		LoginPanel(wxWindow *parent,
		        const wxPoint& point,
                const wxSize& size,
                long style);
		~LoginPanel();	public:		EditCtrl* pEdit3;
	private:
		wxStaticBox* pStaticBox;		wxStaticText* pTxt1;		EditCtrl* pEdit1;		wxStaticText* pTxt2;		EditCtrl* pEdit2;		wxStaticText* pTxt3;				ButtonCtrl* pButtonOK;		ButtonCtrl* pButtonClear;		wxString strIP ;		wxString strUser;		void OnPaint(wxPaintEvent& event);		void OnButtonOK(wxCommandEvent& event);		void OnButtonClear(wxCommandEvent& event);
		DECLARE_EVENT_TABLE();
};}

#endif // LOGINDIALOG_H

⌨️ 快捷键说明

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