1 write to toolsTreeView
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxControl.cs (1)
232this.toolsTreeView = this.Template.FindName("PART_Tools", this) as TreeView;
13 references to toolsTreeView
System.Activities.Presentation (13)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxControl.cs (13)
235if (null != this.toolsTreeView) 237this.toolsTreeView.ItemsSource = this.Categories; 238this.toolsTreeView.ItemContainerStyleSelector = new TreeViewContainerStyleSelector(this); 239this.toolsTreeView.ItemTemplateSelector = new TreeViewTemplateSelector(this); 240this.toolsTreeView.SelectedItemChanged += (s, e) => 256null != this.toolsTreeView) 258this.toolsTreeView.Focus(); 309if (null != this.toolsTreeView) 311this.toolsTreeView.ItemsSource = null; 312this.toolsTreeView.ItemsSource = this.categories; 393if (null != this.toolsTreeView && null != this.toolsTreeView.SelectedItem) 395ToolboxItemWrapper tool = this.toolsTreeView.SelectedItem as ToolboxItemWrapper;