mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
16 lines
276 B
C++
16 lines
276 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow winA, winB;
|
|
TopWindow win;
|
|
|
|
win.OpenMain();
|
|
winA.SetRect(100, 100, 100, 100);
|
|
winA.Open(&win);
|
|
winB.SetRect(100, 100, 100, 100);
|
|
winB.Open(&win);
|
|
EditField f;
|
|
winA.Add(f.SizePos());
|
|
win.Run();
|
|
}
|