HtmlContentControl.BindCommand(Expression<Action>, Object, String, Func<Object>) Method
In This Article
Uses the command selector to find an appropriate parameterized MVVM command in the source, and binds this command to the target HTML element.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.2.dll
NuGet Package: DevExpress.Win.Navigation
#Declaration
public IDisposable BindCommand(
Expression<Action> commandSelector,
object source,
string elementId,
Func<object> queryCommandParameter
)
#Parameters
Name | Type | Description |
---|---|---|
command |
Expression<Action> | An Expression that selects the appropriate command from the source object. |
source | Object | An Object (typically, a View |
element |
String | The unique ID of the target HTML element. |
query |
Func<Object> | A Func delegate that passes the specific Object to the command as a parameter. |
#Returns
Type | Description |
---|---|
IDisposable | An |
See Also