Skip to main content
A newer version of this page is available. .

MethodToCommandBehavior

  • 4 minutes to read

The MethodToCommandBehavior class is special behavior that allows you to bind a method to a property of the ICommand type.

Getting Started

Assume that your task is to invoke GridControl methods by clicking the BarButtonItems located in the View.

Below is a code snippet of the View.

<dxb:BarManager>
    <dxb:BarManager.Bars>
        <dxb:Bar>
            <dxb:BarButtonItem 
                Content="Descending" 
                Glyph="{dx:DXImage Image=MoveDown_16x16.png}" 
                BarItemDisplayMode="ContentAndGlyph"/>               
            <dxb:BarButtonItem 
                Content="Ascending" 
                Glyph="{dx:DXImage Image=MoveUp_16x16.png}" 
                BarItemDisplayMode="ContentAndGlyph"/>
            <dxb:BarButtonItem 
                Content="Clear Sorting" 
                Glyph="{dx:DXImage Image=Clear_16x16.png}" 
                BarItemDisplayMode="ContentAndGlyph"/>
        </dxb:Bar>
    </dxb:BarManager.Bars>
    <Grid>
        <dxg:GridControl 
            x:Name="gridControl" 
            ItemsSource="{Binding Users}" 
            AutoGenerateColumns="AddNew" >
            <dxg:GridControl.View>
                <dxg:TableView 
                    x:Name="tableView" 
                    ShowGroupPanel="False" 
                    FadeSelectionOnLostFocus="False"/>
            </dxg:GridControl.View>
        </dxg:GridControl>
    </Grid>
</dxb:BarManager>

The solution is to use the MethodToCommandBehavior. Attach this behavior to a BarButtonItem, then specify the MethodToCommandBehavior properties step by step.

  • The Target property is responsible for the target-object. In the current scenario, the target object is the BarButtonItem. By default, the MethodToCommandBehavior uses the associated object as the Target, so if you attach the behavior to the required object directly, you can skip the Target initialization.
  • The Command property specifies the name of a property that should contain the ICommand object, which created by the MethodToCommandBehavior based on the specified Method, CanExecuteFunction and Args properties. Its default value is “Command”.
  • The Source property should contain the source-object. Due to the fact that the source-method is owned by the GridControl, bind the Source property to the GridControl.
  • The Method property contains the source-method name. Therefore, you need to specify the name of the required method here.
  • The CanExecuteFunction property line allows you to specify a Boolean function that determines whether the method specified using the Method property line can be executed in its current state.
  • The MethodToCommandBehavior also provides several properties that are responsible for the source-method parameters: Arg1, Arg2Arg15. You can specify no more than 15 arguments.
<dxb:BarButtonItem 
    Content="Descending" 
    Glyph="{dx:DXImage Image=MoveDown_16x16.png}" 
    BarItemDisplayMode="ContentAndGlyph">               
    <dxmvvm:Interaction.Behaviors>
        <dxmvvm:MethodToCommandBehavior 
            Source="{Binding ElementName=gridControl}" 
            Method="SortBy"
            Arg1="{Binding ElementName=gridControl,Path=CurrentColumn}" 
            Arg2="Descending"/>
    </dxmvvm:Interaction.Behaviors>
</dxb:BarButtonItem>

Arguments Conversion

The MethodToCommandBehavior automatically converts its specified arguments to the parameterized type if possible. In the code above, the “Descending” string will be automatically converted to the ColumnSortOrder parameterized type.

Declaration via SmartTag

Assign the MethodToCommandBehavior to the corresponding BarButtonItem.

MethodToCommandBehavior_SmartTag_01

Specify the source-object. For this, bind the Source property to GridControl by using the Binding Editor.

MethodToCommandBehavior_SmartTag_02

Choose the required source-object’s method from the dropdown list.

MethodToCommandBehavior_SmartTag_03

After the method has been selected, Smart Tag generates property lines for method’s arguments. Specify them in order.

MethodToCommandBehavior_SmartTag_04

Note that Smart Tag generates property lines based on the maximum number of method’s arguments. So, there is no need to specify them simultaneously.

Example

View Example

Imports System
Imports System.Linq
Imports System.Collections.Generic
Imports DevExpress.Mvvm.POCO

Namespace MethodToCommandExample.Common
    Public Class User
        Protected Sub New(ByVal name As String, ByVal iD As Integer)
            Me.Name = name
            Me.ID = iD
        End Sub
        Public Shared Function Create(ByVal id As Integer, ByVal name As String) As User
            Return ViewModelSource.Create(Function() New User(name, id))
        End Function

        Public Property Name() As String
        Public Property ID() As Integer
    End Class
End Namespace