demo.cs 802 B

1234567891011121314151617181920
  1. using Terminal;
  2. class Demo {
  3. static void Main ()
  4. {
  5. Application.Init ();
  6. var top = Application.Top;
  7. var win = new Window (new Rect (0, 0, 80, 24), "Hello") {
  8. new Label (new Rect (0, 0, 40, 3), "1-Hello world, how are you doing today") { TextAlignment = TextAlignment.Left },
  9. new Label (new Rect (0, 4, 40, 3), "2-Hello world, how are you doing today") { TextAlignment = TextAlignment.Right},
  10. new Label (new Rect (0, 8, 40, 3), "3-Hello world, how are you doing today") { TextAlignment = TextAlignment.Centered },
  11. new Label (new Rect (0, 12, 40, 3), "4-Hello world, how are you doing today") { TextAlignment = TextAlignment.Justified},
  12. //new Button (3, 16, "Ok"),
  13. new Label (3, 14, "Login: "),
  14. new TextField (10, 14, 40, ""),
  15. };
  16. top.Add (win);
  17. Application.Run ();
  18. }
  19. }