#include using namespace Upp; #define LAYOUTFILE #include struct MyApp : WithStandardLayout { SplitterFrame sf; ArrayCtrl list,list1; typedef MyApp CLASSNAME; TopWindow app; MyApp() { CtrlLayoutOKCancel(*this, "Test SplitterFrame"); AddFrame(sf.Left(list, 200)); list.AddColumn("List"); for(int i = 0; i < 100; i++) list.Add(FormatIntRoman(i, true)); AddFrame(InsetFrame()); sf.SizeMin(200).MinSize(100); Sizeable(); } }; GUI_APP_MAIN { MyApp().Run(); }