mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
11 lines
155 B
C++
11 lines
155 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
DropTime ctrl;
|
|
TopWindow win;
|
|
win << ctrl.TopPos(10).LeftPos(10, 500);
|
|
win.Run();
|
|
}
|