Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created July 2, 2014 06:07
Show Gist options
  • Save jerstlouis/24d76af9393f92bf4695 to your computer and use it in GitHub Desktop.
Save jerstlouis/24d76af9393f92bf4695 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 };
}
Form1 form1 {};
class App : GuiApplication
{
bool Init()
{
form1.visible = false;
form1.Create();
form1.state = normal;
form1.clientSize = { 800, 600 };
form1.state = maximized;
form1.visible = true;
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment