зеркало из https://github.com/DeGsoft/maui-linux.git
21 строка
319 B
C#
21 строка
319 B
C#
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; }
|
|
}
|
|
} |