summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla32776.cs
blob: f6d0b4c4fdc8ce40da24169a029897625cbfee93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Text;
using Xamarin.Forms.CustomAttributes;

namespace Xamarin.Forms.Controls.Issues
{
	[Issue (IssueTracker.Bugzilla, 32776, "MasterDetail page - page title not showing for Windows Phone 8.1 (any orientation) or in Windows 8.1 (portrait orientation).", PlatformAffected.WinRT, NavigationBehavior.PushModalAsync)]
    public class Bugzilla32776
		: MasterDetailPage
    {
		public Bugzilla32776 ()
		{
			Master = new ContentPage { Title = "Content page" };
			Detail = new NavigationPage (new ContentPage {
				Title = "Test"
			});
		}
    }
}