mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
19 lines
311 B
C++
19 lines
311 B
C++
#include "ChildClip.h"
|
|
|
|
|
|
|
|
ChildClip::ChildClip()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow app;
|
|
DocEdit edit;
|
|
app.Add(edit.HSizePos(100, 100).VSizePos(100, 100));
|
|
Button b;
|
|
edit.Add(b.TopPos(-20, 50).LeftPos(20, 50));
|
|
app.NoBackPaint();
|
|
app.Sizeable().Run();
|
|
}
|