mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
17 lines
274 B
C++
17 lines
274 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
ArrayCtrl a;
|
|
a.AddColumn("Alfa\rbeta");
|
|
for(int i = 0; i < 100; i++) {
|
|
a.Add(i);
|
|
if(i % 3 == 0)
|
|
a.Select(i);
|
|
}
|
|
a.Select(70, 10);
|
|
a.MultiSelect();
|
|
TopWindow app;
|
|
app.Add(a.SizePos());
|
|
app.Run();
|
|
}
|