C# Class System.Windows.Controls.Extensions.UIElement

Represents a collection of attached properties for enhanced UI element features.
Show file Open project: lecode-official/mvvm-framework

Public Properties

Property Type Description
InputBindingsProperty DependencyProperty

Public Methods

Method Description
GetInputBindings ( DependencyObject uiElement ) : ICommand

Gets the value of the InputBindingsProperty attached property.

SetInputBindings ( DependencyObject uiElement, ICommand value ) : void

Sets the value of the InputBindingsProperty attached property.

Method Details

GetInputBindings() public static method

Gets the value of the InputBindingsProperty attached property.
public static GetInputBindings ( DependencyObject uiElement ) : ICommand
uiElement DependencyObject The UI element which is used to get the value.
return ICommand

SetInputBindings() public static method

Sets the value of the InputBindingsProperty attached property.
public static SetInputBindings ( DependencyObject uiElement, ICommand value ) : void
uiElement DependencyObject The UI element which is used to set the value.
value ICommand The value that is to be set.
return void

Property Details

InputBindingsProperty public static property

Contains the dependency property that contains a list of input bindings, which can be set via style.
public static DependencyProperty InputBindingsProperty
return DependencyProperty