mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-30 22:04:05 -06:00
16 lines
256 B
C++
16 lines
256 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow win;
|
|
PopUpTree tree;
|
|
|
|
tree.SetRoot(CtrlImg::cut(), "Root");
|
|
tree.Add(0, Null, "Test");
|
|
|
|
win.Add(tree.HSizePos().VSizePos(0, Ctrl::STDSIZE));
|
|
win.Run();
|
|
}
|
|
|