Add support for clipping

This commit is contained in:
Miguel de Icaza
2017-12-15 22:29:40 -05:00
parent 978cc9922b
commit cc88cb44e1
3 changed files with 140 additions and 70 deletions

View File

@@ -5,7 +5,7 @@ class Demo {
{
Application.Init ();
var top = Application.Top;
top.Add (new Window (new Rect (10, 10, 20, 10), "Hello"));
top.Add (new Window (new Rect (0, 0, 80, 24), "Hello"));
Application.Run ();
}
}