mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
23 lines
405 B
C++
23 lines
405 B
C++
#include "ArrayCtrlEdit.h"
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
DropList es1;
|
|
EditString es2;
|
|
es1.Add("Hello!");
|
|
ArrayCtrl list;
|
|
list.AddColumn(t_("hun")).Edit(es1);
|
|
list.AddColumn(t_("fin")).Edit(es2);
|
|
list.Appending().AppendLine();
|
|
// list.AutoAppending();
|
|
list.DoAppend();
|
|
TopWindow win;
|
|
win.Add(list.SizePos());
|
|
win.Run();
|
|
win.Sizeable();
|
|
TabCtrl tab;
|
|
tab.Set
|
|
}
|
|
|