This repository has been archived on 2025-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
RelayFile/UserInterface/OnLineControl.h

23 lines
417 B
C++

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