mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
12 lines
263 B
C++
12 lines
263 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow win;
|
|
StaticRect r;
|
|
r.Color(Blend(SColorShadow, SColorFace, 180));
|
|
win.Add(r.HSizePos(10, 10).VSizePos(10, 10));
|
|
r.SetFrame(RightSeparatorFrame());
|
|
win.SetRect(0, 0, 100, 40);
|
|
win.Run();
|
|
}
|