RelayFile/UserInterface/OnLineControl.h

23 lines
417 B
C
Raw Normal View History

2025-05-08 21:13:36 +08:00
#ifndef ONLINECONTROL_H
#define ONLINECONTROL_H
#include "InterfaceDefine.hpp"
2025-05-08 21:13:36 +08:00
class OnlineControl : public wxPanel
{
public:
OnlineControl(wxWindow* parent);
~OnlineControl() override;
private:
void Init();
public:
wxStaticText* lbCurState_;
wxStaticText* elbCurState_;
wxStaticText* lbCurPoint_;
wxStaticText* elbCurPoint_;
wxListBox* onLineList_;
2025-05-08 21:13:36 +08:00
};
#endif // ONLINECONTROL_H