InternalPropertyBindingConverter Class

Definition

Used to Convert an object to an object's property value even if the property is internal. XAML does not support Binding to internal properties and this converter is meant to address that problem.

public ref class InternalPropertyBindingConverter : System::Windows::Data::IValueConverter
public class InternalPropertyBindingConverter : System.Windows.Data.IValueConverter
type InternalPropertyBindingConverter = class
    interface IValueConverter
Public Class InternalPropertyBindingConverter
Implements IValueConverter
Inheritance
InternalPropertyBindingConverter
Implements

Constructors

InternalPropertyBindingConverter()

Methods

Convert(Object, Type, Object, CultureInfo)

Converts value to the resulting object obtained from retrieving the property value in parameter (or property values if parameter contains dots) out of value. In the spirit of WPF's Binding, this method traces instead of throwing exceptions so that it supports an eventual value of null and other problems without throwing.

ConvertBack(Object, Type, Object, CultureInfo)

This method is not supported and throws an exception when called.

Applies to