mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
17 lines
266 B
C++
17 lines
266 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <Gui16a/dlg.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
struct MyAppWindow : public WithDlgLayout<TopWindow> {
|
|
MyAppWindow() {
|
|
CtrlLayout(*this, "MyDialog");
|
|
}
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
MyAppWindow().Run();
|
|
}
|