зеркало из https://github.com/DeGsoft/maui-linux.git
23 строки
505 B
C#
23 строки
505 B
C#
using Windows.UI.Xaml.Media;
|
|
|
|
#if WINDOWS_UWP
|
|
|
|
namespace Xamarin.Forms.Platform.UWP
|
|
#else
|
|
|
|
namespace Xamarin.Forms.Platform.WinRT
|
|
#endif
|
|
{
|
|
internal static class ConvertExtensions
|
|
{
|
|
public static Brush ToBrush(this Color color)
|
|
{
|
|
return new SolidColorBrush(color.ToWindowsColor());
|
|
}
|
|
|
|
public static Windows.UI.Color ToWindowsColor(this Color color)
|
|
{
|
|
return Windows.UI.Color.FromArgb((byte)(color.A * 255), (byte)(color.R * 255), (byte)(color.G * 255), (byte)(color.B * 255));
|
|
}
|
|
}
|
|
} |