Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created July 10, 2014 05:58
Show Gist options
  • Save jerstlouis/fcc83f1d9720a88d3d37 to your computer and use it in GitHub Desktop.
Save jerstlouis/fcc83f1d9720a88d3d37 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 = { 232, 136 };
bool NotifyClicked(Button button, int x, int y, Modifiers mods)
{
Sleep(3);
MessageBox { master = this }.Modal();
return true;
}
};
}
Form1 form1 {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment