Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created September 12, 2016 03:29
Show Gist options
  • Save jerstlouis/7acb02d31330139fbd34281cdf2adca8 to your computer and use it in GitHub Desktop.
Save jerstlouis/7acb02d31330139fbd34281cdf2adca8 to your computer and use it in GitHub Desktop.
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