Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jerstlouis/04397dbf7c8450b34c2d3e440373ab64 to your computer and use it in GitHub Desktop.
Save jerstlouis/04397dbf7c8450b34c2d3e440373ab64 to your computer and use it in GitHub Desktop.
import "ecere"
class Form1 : Window
{
caption = $"Form1";
background = formColor;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
clientSize = { 632, 438 };
EditBox editBox1 { this, caption = $"editBox1", size = { 374, 211 }, position = { 128, 88 }, multiLine = true };
}
Form1 form1 {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment