OrcaSlicer/src/slic3r/GUI/MonitorPage.cpp
lane.wei 1555904bef Add the full source of BambuStudio
using version 1.0.10
2022-07-15 23:42:08 +08:00

25 lines
No EOL
515 B
C++

#include "MonitorPage.hpp"
namespace Slic3r {
namespace GUI {
MonitorPage::MonitorPage(wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style)
:wxPanel(parent, id, pos, size, style)
{
#ifdef __WINDOWS__
SetDoubleBuffered(true);
#endif //__WINDOWS__
m_main_sizer = new wxBoxSizer(wxHORIZONTAL);
m_content_sizer = new wxBoxSizer(wxVERTICAL);
m_main_sizer->Add(m_content_sizer, 1, wxEXPAND);
SetSizerAndFit(m_main_sizer);
}
MonitorPage::~MonitorPage()
{
}
}
}