Created
December 22, 2016 05:12
-
-
Save jerstlouis/f68f785052756e2bb3b7597b731ab71d 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 Form : Window | |
{ | |
Form() | |
{ | |
printf("Form()\n"); | |
} | |
caption = $"Form1"; | |
background = formColor; | |
borderStyle = sizable; | |
hasMaximize = true; | |
hasMinimize = true; | |
hasClose = true; | |
clientSize = { 632, 438 }; | |
} | |
Form form1 {}; | |
class App : GuiApplication | |
{ | |
Form form2 { }; | |
App() | |
{ | |
printf("App()\n"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment