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