Created
July 10, 2014 05:58
-
-
Save jerstlouis/fcc83f1d9720a88d3d37 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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