mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
30 lines
544 B
C++
30 lines
544 B
C++
#include "Transparent.h"
|
|
|
|
|
|
|
|
App::App()
|
|
{
|
|
CtrlLayout(*this);
|
|
|
|
list.HeaderObject().Absolute().Track();
|
|
|
|
const int fx = 10;
|
|
const int fy = 50;
|
|
|
|
for (int i = 0; i < fx; i++)
|
|
list.AddColumn("Column " + AsString(i), 100).HeaderTab().Min(50);
|
|
|
|
for (int i = 0; i < fx; i++)
|
|
for (int j = 0; j < fy; j++)
|
|
list.Set(j, i, "Value " + AsString(j) + ":" + AsString(i));
|
|
|
|
Sizeable().Zoomable();
|
|
|
|
// static PaintRect pr(ColorDisplay(), White());
|
|
// Background(pr);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
App().Run();
|
|
}
|