forked from CommunityToolkit/WindowsCommunityToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorToSelectedValueConverter.cs
More file actions
36 lines (33 loc) · 980 Bytes
/
ColorToSelectedValueConverter.cs
File metadata and controls
36 lines (33 loc) · 980 Bytes
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Data;
namespace Microsoft.Toolkit.Uwp.UI.Controls.ColorPickerConverters
{
/// <summary>
/// Ignores null target values for TwoWay binding.
/// </summary>
public class ColorToSelectedValueConverter : IValueConverter
{
/// <inheritdoc/>
public object Convert(
object value,
Type targetType,
object parameter,
string language)
{
return value;
}
/// <inheritdoc/>
public object ConvertBack(
object value,
Type targetType,
object parameter,
string language)
{
return value ?? DependencyProperty.UnsetValue;
}
}
}