From d96a53cb50bc42209078f839772da00f93e50666 Mon Sep 17 00:00:00 2001 From: Pawel Andruszkiewicz Date: Fri, 20 Jan 2017 08:57:51 +0100 Subject: [PATCH] Scrollable entry with placeholder placed on screen Change-Id: If09f585c03e2862047ff7808939e980d3b0419c6 Signed-off-by: Pawel Andruszkiewicz --- ElmSharp.Test/TC/EntryTest1.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ElmSharp.Test/TC/EntryTest1.cs b/ElmSharp.Test/TC/EntryTest1.cs index 014fa62..c77101a 100644 --- a/ElmSharp.Test/TC/EntryTest1.cs +++ b/ElmSharp.Test/TC/EntryTest1.cs @@ -63,6 +63,15 @@ namespace ElmSharp.Test }; entry2.SetPartText("guide", "Password"); + Entry entry3 = new Entry(window) + { + IsSingleLine = true, + Scrollable = true, + }; + entry3.SetPartText("guide", "Enter a System.Double"); + entry3.Geometry = new Rect(0, 163, 720, 37); + entry3.Show(); + box.PackEnd(entry1); box.PackEnd(entry2); -- 2.7.4