summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Andruszkiewicz <p.andruszkie@samsung.com>2017-01-20 08:57:51 +0100
committerPawel Andruszkiewicz <p.andruszkie@samsung.com>2017-03-16 08:35:59 +0100
commitd96a53cb50bc42209078f839772da00f93e50666 (patch)
treea42a74d926bdfb5b7d5cb1031463e53989bc3342
parent845890b0e0f1bc11daab12d3ca52a2b70978622b (diff)
downloadelm-sharp-d96a53cb50bc42209078f839772da00f93e50666.tar.gz
elm-sharp-d96a53cb50bc42209078f839772da00f93e50666.tar.bz2
elm-sharp-d96a53cb50bc42209078f839772da00f93e50666.zip
Scrollable entry with placeholder placed on screen
Change-Id: If09f585c03e2862047ff7808939e980d3b0419c6 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
-rw-r--r--ElmSharp.Test/TC/EntryTest1.cs9
1 files changed, 9 insertions, 0 deletions
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", "<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);