mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
15 lines
229 B
C++
15 lines
229 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
WithDropChoice<EditString> x;
|
|
EditString y;
|
|
TopWindow w;
|
|
w.Add(x.LeftPos(10, 100).TopPos(10, 19));
|
|
w.Add(y.LeftPos(110, 100).TopPos(10, 19));
|
|
|
|
w.Run();
|
|
}
|
|
|