From: Pawel Andruszkiewicz Date: Fri, 20 Jan 2017 07:57:51 +0000 (+0100) Subject: Scrollable entry with placeholder placed on screen X-Git-Tag: accepted/tizen/common/20170317.094549~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F75%2F119275%2F1;p=platform%2Fcore%2Fcsapi%2Felm-sharp.git Scrollable entry with placeholder placed on screen Change-Id: If09f585c03e2862047ff7808939e980d3b0419c6 Signed-off-by: Pawel Andruszkiewicz --- 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);