Xamarin.Forms/Xamarin.Forms.Platform.UAP/ITitleProvider.cs

15 строки
266 B
C#

using WBrush = Windows.UI.Xaml.Media.Brush;
namespace Xamarin.Forms.Platform.UWP
{
internal interface ITitleProvider
{
WBrush BarBackgroundBrush { set; }
WBrush BarForegroundBrush { set; }
bool ShowTitle { get; set; }
string Title { get; set; }
}
}