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.cxx

20 lines
354 B
C++

#include "LocalControl.h"
LocalControl::LocalControl(wxWindow* parent) : wxPanel(parent)
{
Init();
}
LocalControl::~LocalControl()
{
}
void LocalControl::Init()
{
auto* topSizer = new wxBoxSizer(wxVERTICAL);
dirCtrl_ = new wxGenericDirCtrl(this, wxID_ANY);
topSizer->Add(dirCtrl_, 1, wxEXPAND);
SetSizer(topSizer);
Layout();
}