The WPF.ColorConverter class provides a way to convert a System.Drawing.Color value to System.Windows.Media.Color value. With this converter a property with a System.Drawing.Color type can be used in a XAML data binding.

Syntax

[ValueConversion(typeof(System.Drawing.Color), typeof(System.Windows.Media.Color))]
public class ColorConverter : IValueConverter

Introduced: 16.0.

Examples

Enter an introductory text for your TXTextControl.WPF.ColorConverter Class example here, or leave blank, if there is nothing to say.

Methods

Method Description
Convert Converts a System.Drawing.Color value to System.Windows.Media.Color value.
ConvertBack Converts a System.Windows.Media.Color to a System.Drawing.Color value.