import "ecere"

class Form1 : Window
{
   caption = $"Form1";
   background = formColor;
   borderStyle = sizable;
   hasMaximize = true;
   hasMinimize = true;
   hasClose = true;
   clientSize = { 632, 438 };

   Window otherWindow { this, anchor = { 10, 10, 10, 10 }, background = blue };
   EditBox editBox1 { otherWindow, caption = $"editBox1", size = { 374, 211 }, position = { 128, 88 }, multiLine = true };
}

Form1 form1 {};