git-svn-id: svn://ultimatepp.org/upp/trunk@3895 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-09-20 14:02:28 +00:00
parent 8de669b422
commit c8f95a22b2
2 changed files with 4 additions and 2 deletions

View file

@ -27,8 +27,9 @@ GUI_APP_MAIN
TopWindow app;
app.Sizeable();
ArrayCtrl x;
x.AddColumn("");
for(int i = 0; i < 30; i++)
x.HeaderObject().Absolute();
x.AddColumn("", 2000);
for(int i = 0; i < 1000; i++)
x.Add(i);
app.Add(x.SizePos());
app.Run();