Advertisement
Guest User

Untitled

a guest
May 31st, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import "ecere"
  2.  
  3. class Form1 : Window
  4. {
  5. caption = $"Form1";
  6. background = formColor;
  7. borderStyle = sizable;
  8. hasMaximize = true;
  9. hasMinimize = true;
  10. hasClose = true;
  11. clientSize = { 632, 438 };
  12.  
  13. Button button1 { this, caption = $"button1", position = { 56, 72 } };
  14. }
  15.  
  16. Form1 form1 {};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement