Created
July 2, 2014 06:07
-
-
Save jerstlouis/24d76af9393f92bf4695 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 }; | |
} | |
Form1 form1 {}; | |
class App : GuiApplication | |
{ | |
bool Init() | |
{ | |
form1.visible = false; | |
form1.Create(); | |
form1.state = normal; | |
form1.clientSize = { 800, 600 }; | |
form1.state = maximized; | |
form1.visible = true; | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment