Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created January 28, 2017 22:34
Show Gist options
  • Save jerstlouis/4e04f99d2f52c222239282badbe11723 to your computer and use it in GitHub Desktop.
Save jerstlouis/4e04f99d2f52c222239282badbe11723 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 };
Button button1
{
this, caption = $"button1", position = { 200, 104 };
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
PrintLn("'this' here is a ", _class.name);
return true;
}
};
}
Form1 form1 {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment