Xceed.Wpf.Toolkit.CollectionControlButton.CollectionControlButton_Click C# (CSharp) Method

CollectionControlButton_Click() private method

private CollectionControlButton_Click ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
return void
    private void CollectionControlButton_Click( object sender, RoutedEventArgs e )
    {
      CollectionControlDialog collectionControlDialog = new CollectionControlDialog();
      collectionControlDialog.ItemsSource = this.ItemsSource;
      collectionControlDialog.NewItemTypes = this.NewItemTypes;
      collectionControlDialog.ItemsSourceType = this.ItemsSourceType;
      collectionControlDialog.IsReadOnly = this.IsReadOnly;
      collectionControlDialog.ShowDialog();
    }