Created
July 10, 2014 06:19
-
-
Save jerstlouis/b1f1b34373ed1d1a34d6 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 }; | |
Window ws { this, size = { 100, 100 } }; | |
Button button1 | |
{ | |
/*ws, master = */this, caption = $"button1", position = { 232, 136 }; | |
bool NotifyClicked(Button button, int x, int y, Modifiers mods) | |
{ | |
Sleep(3); | |
MessageBox { master = ws }.Modal(); | |
return true; | |
} | |
}; | |
} | |
Form1 form1 {}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment