Table of Contents

Class InputBindingTrigger

Namespace
Gemini.Framework.Services
Assembly
Gemini.dll
public class InputBindingTrigger : TriggerBase<FrameworkElement>, IAnimatable, IAttachedObject, ICommand
Inheritance
TriggerBase
TriggerBase<FrameworkElement>
InputBindingTrigger
Implements
IAttachedObject
Inherited Members
TriggerBase<FrameworkElement>.AssociatedObject
TriggerBase<FrameworkElement>.AssociatedObjectTypeConstraint
TriggerBase.ActionsProperty
TriggerBase.OnDetaching()
TriggerBase.CreateInstanceCore()
TriggerBase.Detach()
TriggerBase.Actions
TriggerBase.PreviewInvoke

Fields

InputBindingProperty

public static readonly DependencyProperty InputBindingProperty

Field Value

DependencyProperty

Properties

InputBinding

public InputBinding InputBinding { get; set; }

Property Value

InputBinding

Methods

CanExecute(object)

Defines the method that determines whether the command can execute in its current state.

public bool CanExecute(object parameter)

Parameters

parameter object

Data used by the command. If the command does not require data to be passed, this object can be set to null.

Returns

bool

true if this command can be executed; otherwise, false.

Execute(object)

Defines the method to be called when the command is invoked.

public void Execute(object parameter)

Parameters

parameter object

Data used by the command. If the command does not require data to be passed, this object can be set to null.

OnAttached()

protected override void OnAttached()

Events

CanExecuteChanged

Occurs when changes occur that affect whether or not the command should execute.

public event EventHandler CanExecuteChanged

Event Type

EventHandler