summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WP8/ConvertExtensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WP8/ConvertExtensions.cs')
-rw-r--r--Xamarin.Forms.Platform.WP8/ConvertExtensions.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WP8/ConvertExtensions.cs b/Xamarin.Forms.Platform.WP8/ConvertExtensions.cs
new file mode 100644
index 00000000..ed96ecdf
--- /dev/null
+++ b/Xamarin.Forms.Platform.WP8/ConvertExtensions.cs
@@ -0,0 +1,17 @@
+using System.Windows.Media;
+
+namespace Xamarin.Forms.Platform.WinPhone
+{
+ internal static class ConvertExtensions
+ {
+ public static Brush ToBrush(this Color color)
+ {
+ return new SolidColorBrush(color.ToMediaColor());
+ }
+
+ public static System.Windows.Media.Color ToMediaColor(this Color color)
+ {
+ return System.Windows.Media.Color.FromArgb((byte)(color.A * 255), (byte)(color.R * 255), (byte)(color.G * 255), (byte)(color.B * 255));
+ }
+ }
+} \ No newline at end of file