Skip to content

BindableChildConverter

JaykeBird edited this page Feb 21, 2023 · 4 revisions

Back to home | Back to Reference | View raw text

BindableChildConverter class

Description

A converter used to set the child of a control to a bound element.

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SolidShineUi
  SolidShineUi.BindableChildConverter[[BindableChildConverter]]
  end
  subgraph System.Windows.Data
System.Windows.Data.IValueConverter[[IValueConverter]]
  end
System.Windows.Data.IValueConverter --> SolidShineUi.BindableChildConverter
Loading

Members

Methods

Public methods

Returns Name
object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Convert an UIElement to be the child of a Border.
object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Convert a Border's child to get the UIElement it represents.

Details

Summary

A converter used to set the child of a control to a bound element.

Inheritance

  • IValueConverter

Constructors

BindableChildConverter

public BindableChildConverter()

Methods

Convert

public virtual object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Arguments
Type Name Description
object value
Type targetType
object parameter
CultureInfo culture
Summary

Convert an UIElement to be the child of a Border.

ConvertBack

public virtual object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Arguments
Type Name Description
object value
Type targetType
object parameter
CultureInfo culture
Summary

Convert a Border's child to get the UIElement it represents.

Generated with ModularDoc

Clone this wiki locally