mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
13 lines
233 B
C++
13 lines
233 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow win;
|
|
IconList list;
|
|
for(int i = 0; i < 500; i++)
|
|
list.Add(CtrlImg::copy());
|
|
win.Sizeable().Zoomable().Add(list.SizePos());
|
|
win.Run();
|
|
}
|