mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
235 B
C++
15 lines
235 B
C++
#include "ScrollBug.h"
|
|
|
|
ScrollBug::ScrollBug()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
list.AddColumn("Test");
|
|
for(int i = 0; i < 1000; i++)
|
|
list.Add(i);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Ctrl::ShowRepaint(30);
|
|
ScrollBug().Run();
|
|
}
|