mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
11 lines
179 B
C++
11 lines
179 B
C++
#include "DateTimeCtrl.h"
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
// Ctrl::ShowRepaint(100);
|
|
TopWindow win;
|
|
DateTimeCtrl dtc;
|
|
win.Add(dtc.TopPos(100, 20).LeftPos(100, 200));
|
|
win.Run();
|
|
}
|
|
|