HtmlContentPopup.BindCommand<T>(Expression<Action<T>>, Object, String, Func<T>) 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<T>(
Expression<Action<T>> commandSelector,
object source,
string elementId,
Func<T> queryCommandParameter
)
#Parameters
Name | Type | Description |
---|---|---|
command |
Expression<Action<T>> | 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<T> | A |
#Type Parameters
Name | Description |
---|---|
T | The type of a View |
#Returns
Type | Description |
---|---|
IDisposable | An |
See Also