ultimatepp/reference/SetLayout/SetLayout.cpp
cxl 2bb38b8f97 .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@10279 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-10-09 11:02:07 +00:00

23 lines
388 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <SetLayout/SetLayout.lay>
#include <CtrlCore/lay.h>
class MyApp : public WithLayout1<TopWindow> {
public:
MyApp()
{
CtrlLayout(*this, "Window title");
layout1 << [=] { SetLayout_Layout1(*this); };
layout2 << [=] { SetLayout_Layout2(*this); };
}
};
GUI_APP_MAIN
{
MyApp().Run();
}