Works, and shows the problem with lack of clipping for Window objects

This commit is contained in:
Miguel de Icaza
2017-12-14 22:37:06 -05:00
parent 235e507730
commit 693c5e3452
4 changed files with 353 additions and 96 deletions

View File

@@ -3,7 +3,9 @@ using Terminal;
class Demo {
static void Main ()
{
var app = new Application ();
Application.Init ();
var top = Application.Top;
top.Add (new Window (new Rect (10, 10, 20, 20), "Hello"));
Application.Run ();
}
}