summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/ITitleProvider.cs
blob: cd17b09e1c3a73370a88be1399e856a1ba93609a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using Windows.UI.Xaml.Media;

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	internal interface ITitleProvider
	{
		Brush BarBackgroundBrush { set; }

		Brush BarForegroundBrush { set; }

		bool ShowTitle { get; set; }

		string Title { get; set; }
	}
}