Scrollable entry with placeholder placed on screen 75/119275/1
authorPawel Andruszkiewicz <p.andruszkie@samsung.com>
Fri, 20 Jan 2017 07:57:51 +0000 (08:57 +0100)
committerPawel Andruszkiewicz <p.andruszkie@samsung.com>
Thu, 16 Mar 2017 07:35:59 +0000 (08:35 +0100)
Change-Id: If09f585c03e2862047ff7808939e980d3b0419c6
Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
ElmSharp.Test/TC/EntryTest1.cs

index 014fa62..c77101a 100644 (file)
@@ -63,6 +63,15 @@ namespace ElmSharp.Test
             };
             entry2.SetPartText("guide", "<span color=#999999>Password</span>");
 
+            Entry entry3 = new Entry(window)
+            {
+                IsSingleLine = true,
+                Scrollable = true,
+            };
+            entry3.SetPartText("guide", "<span color=#808080FF font_size=28 align=left valign=top wrap=mixed>Enter a System.Double</span>");
+            entry3.Geometry = new Rect(0, 163, 720, 37);
+            entry3.Show();
+
             box.PackEnd(entry1);
             box.PackEnd(entry2);