New to Telerik UI for WPF? Download free 30-day trial

Command Support

The purpose of this article is to introduce you the command support of the RadTreeViewItems.

Overview

The RadTreeViewItem exposes a Command property of type ICommand. You can use this property to trigger custom logic defined in your business object. Furthermore, you can set the CommandExecutionTrigger property. This property is an enumeration which controls whether the command should be executed after a Click or a DoubleClick on the corresponding RadTreeViewItem.

Demonstration

In this section we will demonstrate how you can trigger custom logic implemented in your business object using the Command Support of the RadTreeViewItem. Hence we will need to create a custom class implementing the INotifyPropertyChanged interface and exposing the following properties:

  • Header of type string
  • Children of type ObservableCollection
  • EditCommand of type DelegateCommand
  • IsInEditMode of type bool

The ViewModelBase class implements the INotifyPropertyChanged interface.

public class ItemModel : ViewModelBase 
{ 
    private bool inInEditMode; 
    public bool IsInEditMode 
    { 
        get 
        { 
            return this.inInEditMode; 
        } 
        set 
        { 
            if (this.inInEditMode != value) 
            { 
                this.inInEditMode = value; 
                this.OnPropertyChanged("IsInEditMode"); 
            } 
        } 
    } 
 
    private string header; 
    public string Header 
    { 
        get 
        { 
            return this.header; 
        } 
        set 
        { 
            if (this.header != value) 
            { 
                this.header = value; 
                this.OnPropertyChanged("Header"); 
            } 
        } 
    } 
 
    public DelegateCommand EditCommand { get; set; } 
 
    public ObservableCollection<ItemModel> Children { get; set; } 
} 

Furthermore, we can create a ViewModel class which will fill and expose an Items collection of type ObservableCollection. Also, this class will hold the custom logic which will be triggered by the command of the RadTreeViewItem

public class ViewModel 
{ 
    public ViewModel() 
    { 
        this.Items = new ObservableCollection<ItemModel>(); 
        this.GenerateItems(); 
    } 
 
    public ObservableCollection<ItemModel> Items { get; set; } 
 
    private void GenerateItems() 
    { 
        ObservableCollection<ItemModel> children; 
        for (byte j = 1; j < 5; j++) 
        { 
            children = new ObservableCollection<ItemModel>(); 
            for (byte i = 1; i < 4; i++) 
            { 
                children.Add(new ItemModel() 
                { 
                    Header = string.Format("Child {0} of root {1}", i, j), 
                    EditCommand = new DelegateCommand((x) => this.OnEditCommandExecute(x)) 
                }); 
            } 
            this.Items.Add(new ItemModel() 
            { 
                Header = string.Format("Root Item {0}", j), 
                Children = children, 
                EditCommand = new DelegateCommand((x) => this.OnEditCommandExecute(x)) 
            }); 
        } 
    } 
 
    private void OnEditCommandExecute(object sender) 
    { 
        var item = sender as ItemModel; 
        if (item != null) 
        { 
            item.IsInEditMode = true; 
        } 
    } 
} 

In MVVM scenarios it is best to use a Style to set the Command and CommandExecutionTrigger properties of the RadTreeViewItems. For this purpose we will also allow the editing of items and we will use the boolean IsInEditMode property defined in the custom ItemModel class to set the corresponding RadTreeViewItem in edit mode. This will be done in the OnEditCommandExecute() method implemented in the ViewModel class. In order to differ the item that invokes the command we can pass each RadTreeViewItem's DataContext as CommandParameter to the method where custom logic will be implemented. In order to achieve this we can use the RelativeSource binding.

<Grid> 
    <Grid.Resources> 
        <HierarchicalDataTemplate x:Key="HDT" ItemsSource="{Binding Children}"> 
            <TextBlock Text="{Binding Header, Mode=TwoWay}" /> 
        </HierarchicalDataTemplate> 
        <Style TargetType="telerik:RadTreeViewItem"> 
            <Setter Property="Command" Value="{Binding EditCommand}" /> 
            <Setter Property="CommandParameter" Value="{Binding}" /> 
            <Setter Property="CommandExecutionTrigger" Value="DoubleClick" /> 
            <Setter Property="IsInEditMode" Value="{Binding IsInEditMode, Mode=TwoWay}" /> 
        </Style> 
    </Grid.Resources> 
    <telerik:RadTreeView IsEditable="True" 
                     IsExpandOnDblClickEnabled="False" 
                     ItemTemplate="{StaticResource HDT}" 
                     ItemsSource="{Binding Items}" /> 
</Grid> 
In this article