-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOxyColorConverters.cs
More file actions
85 lines (75 loc) · 2.71 KB
/
OxyColorConverters.cs
File metadata and controls
85 lines (75 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="OxyColorConverter.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Converts from OxyPlot colors to Windows.UI.Color and vice versa.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot.Windows
{
using System;
using global::Windows.UI;
using global::Windows.UI.Xaml.Data;
using global::Windows.UI.Xaml.Media;
/// <summary>
/// Converts from OxyPlot colors to Windows.UI.Color and vice versa.
/// </summary>
public sealed class OxyColorConverter : IValueConverter
{
/// <summary>
/// The convert.
/// </summary>
/// <param name="value">The value.</param>
/// <param name="targetType">The target type.</param>
/// <param name="parameter">The parameter.</param>
/// <param name="language">The language.</param>
/// <returns>The converted value.</returns>
public object Convert(object value, Type targetType, object parameter, string language)
{
if (!(value is OxyColor))
{
return null;
}
var color = (OxyColor)value;
Color col = Color.FromArgb(color.A, color.R, color.G, color.B);
if (targetType == typeof(Color))
{
return col;
}
if (targetType == typeof(Brush))
{
Brush ret = new SolidColorBrush(col);
return ret;
}
return null;
}
/// <summary>
/// Converts back.
/// </summary>
/// <param name="value">The value.</param>
/// <param name="targetType">The target type.</param>
/// <param name="parameter">The parameter.</param>
/// <param name="language">The language.</param>
/// <returns>The converted value.</returns>
public object ConvertBack(object value, Type targetType, object parameter, string language)
{
if (targetType != typeof(OxyColor))
{
return null;
}
if (value is Color)
{
var color = (Color)value;
return OxyColor.FromArgb(color.A, color.R, color.G, color.B);
}
var scb = value as SolidColorBrush;
if (scb != null)
{
var color = scb.Color;
return OxyColor.FromArgb(color.A, color.R, color.G, color.B);
}
return null;
}
}
}