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