summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs
diff options
context:
space:
mode:
authorSamantha Houts <samantha.houts@xamarin.com>2016-03-23 15:31:38 -0700
committerSamantha Houts <samantha.houts@xamarin.com>2016-03-23 15:32:21 -0700
commitd5c3359070317e57a2cb8e98608d0286071e389d (patch)
treea363f563a452b7980587d798f1786cd6837f5fcf /Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs
parent2cb7e5363daba65ff73ee5edea4ce311af24269c (diff)
downloadxamarin-forms-d5c3359070317e57a2cb8e98608d0286071e389d.tar.gz
xamarin-forms-d5c3359070317e57a2cb8e98608d0286071e389d.tar.bz2
xamarin-forms-d5c3359070317e57a2cb8e98608d0286071e389d.zip
[W] ListView Cells will respect RowHeight
Diffstat (limited to 'Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs')
-rw-r--r--Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs
new file mode 100644
index 00000000..0f5ac9dd
--- /dev/null
+++ b/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla39829.cs
@@ -0,0 +1,39 @@
+using System;
+
+using Xamarin.Forms.CustomAttributes;
+
+#if UITEST
+using Xamarin.UITest;
+using NUnit.Framework;
+#endif
+
+namespace Xamarin.Forms.Controls
+{
+ [Preserve(AllMembers = true)]
+ [Issue(IssueTracker.Bugzilla, 39829, "RowHeight of ListView is not working for UWP", PlatformAffected.WinRT)]
+ public class Bugzilla39829 : TestContentPage
+ {
+ protected override void Init()
+ {
+ Title = "Master";
+ var listView = new ListView
+ {
+ RowHeight = 150,
+ AutomationId = "listview",
+ ItemsSource = new string[] { "Test1", "Test2", "Test3", "Test4", "Test5", "Test6", }
+ };
+
+ Content = listView;
+ }
+
+#if UITEST
+ [Test]
+ [Category("ManualReview")]
+ public void Bugzilla39829Test()
+ {
+ RunningApp.WaitForElement(q => q.Marked("listview"));
+ RunningApp.Screenshot("If there isn't substantial space between the list items, this test has failed.");
+ }
+#endif
+ }
+}