summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27085.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27085.cs')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27085.cs36
1 files changed, 36 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27085.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27085.cs
new file mode 100644
index 00000000..875d83b5
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla27085.cs
@@ -0,0 +1,36 @@
+using System;
+
+using Xamarin.Forms.CustomAttributes;
+
+#if UITEST
+using Xamarin.UITest;
+using NUnit.Framework;
+#endif
+
+namespace Xamarin.Forms.Controls
+{
+ [Issue (IssueTracker.Bugzilla, 27085, "EntryCell has no possibility to hide keyboard on iOS")]
+ public class Bugzilla27085 : TestContentPage // or TestMasterDetailPage, etc ...
+ {
+ protected override void Init ()
+ {
+ var tableview = new TableView ();
+
+ var section = new TableSection ("Settings");
+ section.Add (new TextCell { Text = "TextCell" });
+ section.Add (new TextCell { Text = "TextCell" });
+ section.Add (new EntryCell { Text = "EntryCell", Keyboard = Keyboard.Numeric });
+ section.Add (new EntryCell { Text = "EntryCell", Keyboard = Keyboard.Numeric });
+ var root = new TableRoot ("Main");
+ root.Add (section);
+
+ tableview.Root = root;
+
+ Content = tableview;
+ }
+
+#if UITEST
+
+#endif
+ }
+}