Created
September 12, 2016 03:29
-
-
Save jerstlouis/7acb02d31330139fbd34281cdf2adca8 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 MyThread : Thread | |
{ | |
unsigned int Main() | |
{ | |
form1.caption = "Hello!"; | |
return 0; | |
} | |
} | |
MyThread thread { }; | |
class Form1 : Window | |
{ | |
caption = $"Form1"; | |
background = formColor; | |
borderStyle = sizable; | |
hasMaximize = true; | |
hasMinimize = true; | |
hasClose = true; | |
clientSize = { 632, 438 }; | |
Button button1 | |
{ | |
this, caption = $"button1", position = { 72, 72 }; | |
bool NotifyClicked(Button button, int x, int y, Modifiers mods) | |
{ | |
thread.Create(); | |
return true; | |
} | |
}; | |
} | |
Form1 form1 {}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment