summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla29229.cs
blob: dab7c657a9543ec6fb3d01d3b91497fa4536717b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Text;
using Xamarin.Forms.CustomAttributes;

namespace Xamarin.Forms.Controls.Issues
{
	[Issue (IssueTracker.Bugzilla, 29229, "ListView crash on Windows Phone", PlatformAffected.WinPhone, NavigationBehavior.PushModalAsync)]
    public class Bugzilla29229
		: NavigationPage
    {
	    public Bugzilla29229()
	    {
		    var absLayout = new AbsoluteLayout();
            absLayout.BackgroundColor = Color.Red;
            absLayout.Scale = 1;

            var cPx = new ListView ();
            //Point ptx = Point.Zero;
		    cPx.ItemTapped += delegate (object sender, ItemTappedEventArgs e) {
		    };
            cPx.ClassId = "weather";
            cPx.Layout (new Rectangle (0,0,480,768));
            absLayout.Children.Add (cPx, new Rectangle (cPx.X, cPx.Y, cPx.Width, cPx.Height), AbsoluteLayoutFlags.None);
            absLayout.LowerChild (cPx);
		    PushAsync (new ContentPage { Content = absLayout });
	    }
    }
}