CommandCreateBinding(ICommand, IDictionaryString, Object, Boolean) Method

Creates a binding for a command without any sources and targets. At least one source must be added by the ICommandBinding.AddSource method to make the command invokable. Targets can be added by the ICommandBinding.AddTarget method.

Definition

Namespace: KGySoft.ComponentModel
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
C#
public static ICommandBinding CreateBinding(
	this ICommand command,
	IDictionary<string, Object?>? initialState = null,
	bool disposeCommand = false
)

Parameters

command  ICommand
The command to bind.
initialState  IDictionaryString, Object  (Optional)
The initial state of the binding.
disposeCommand  Boolean  (Optional)
to dispose the possibly disposable command when the returned ICommandBinding is disposed; to keep the command alive when the returned ICommandBinding is disposed. Use only if the command will not be re-used elsewhere. This parameter is optional.
Default value: .

Return Value

ICommandBinding
An ICommandBinding instance, whose State is initialized by the provided initialState. To make the command invokable by this binding, at least one source must be added by the AddSource method on the result. Targets can be added by the AddTarget method on the result.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ICommand. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also