Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created October 15, 2016 01:15
Show Gist options
  • Save jerstlouis/d1fbd3557b8071d4d89f0a4ea49a2fd3 to your computer and use it in GitHub Desktop.
Save jerstlouis/d1fbd3557b8071d4d89f0a4ea49a2fd3 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 };
bool OnLeftButtonDown(int x, int y, Modifiers mods)
{
Button
{
this, caption = $"Poof!", size = { 80, 20 }, position = { x-40, y-10 };
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
button.Destroy(0);
return true;
}
}.Create();
return true;
}
}
Form1 form1 {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment