mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
19 lines
308 B
C++
19 lines
308 B
C++
#include "GridEx.h"
|
|
|
|
|
|
|
|
GridEx::GridEx()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
grid.SetToolBar();
|
|
grid.Searching();
|
|
grid.AddColumn("Grid Test With One Big Column -------------------------------");
|
|
grid.Inserting().Removing().Chameleon();
|
|
grid.Appending().Editing();
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
GridEx().Run();
|
|
}
|
|
|