mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
15 lines
244 B
C++
15 lines
244 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
DropList dl;
|
|
for(int i = 0; i < 100; i++)
|
|
dl.Add(i);
|
|
TopWindow w;
|
|
w.Add(dl.LeftPos(10, 50).TopPos(0, 20));
|
|
dl.DropWidth(120);
|
|
dl.Tip("Tip!");
|
|
w.Run();
|
|
}
|