maui-linux/Xamarin.Forms.Platform.UAP/ITitleProvider.cs

15 строки
249 B
C#

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