From c2a1f926a5911c15407817dd5da5863c3332cbca Mon Sep 17 00:00:00 2001 From: miguel Date: Wed, 29 May 2019 22:58:42 -0400 Subject: [PATCH] TimeField --- Example/demo.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Example/demo.cs b/Example/demo.cs index d44047579..0c55a2ea0 100644 --- a/Example/demo.cs +++ b/Example/demo.cs @@ -2,6 +2,7 @@ using Terminal.Gui; using System; using Mono.Terminal; + static class Demo { class Box10x : View { public Box10x (int x, int y) : base (new Rect (x, y, 10, 10)) @@ -137,6 +138,8 @@ static class Demo { //scrollView2, new Button (3, 19, "Ok"), new Button (10, 19, "Cancel"), + new TimeField (3, 20, DateTime.Now), + new TimeField (23, 20, DateTime.Now, true), progress, new Label (3, 22, "Press F9 (on Unix, ESC+9 is an alias) to activate the menubar")