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/LocalControl.h

20 lines
313 B
C
Raw Permalink Normal View History

2025-05-08 21:13:36 +08:00
#ifndef LOCALCONTROL_H
#define LOCALCONTROL_H
2025-05-09 22:31:51 +08:00
#include "InterfaceDefine.hpp"
#include <wx/dirctrl.h>
2025-05-08 21:13:36 +08:00
class LocalControl : public wxPanel
{
public:
LocalControl(wxWindow* parent);
~LocalControl() override;
2025-05-09 22:31:51 +08:00
private:
void Init();
public:
wxGenericDirCtrl* dirCtrl_;
2025-05-08 21:13:36 +08:00
};
#endif // LOCALCONTROL_H