1 write to treeView
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DocumentOutline.cs (1)
65this.treeView = new TreeView();
41 references to treeView
System.Workflow.ComponentModel (41)
AuthoringOM\Design\DocumentOutline.cs (41)
66this.treeView.Dock = DockStyle.Fill; 67this.treeView.HideSelection = false; 68this.treeView.AfterSelect += new TreeViewEventHandler(this.OnTreeViewAfterSelect); 69this.treeView.MouseDown += new MouseEventHandler(this.OnTreeViewMouseDown); 70this.treeView.Font = this.Font; 71this.treeView.ItemHeight = Math.Max(this.treeView.ItemHeight, 18); 72this.Controls.Add(this.treeView); 124if (this.treeView.Nodes.Count > 0) 125return this.treeView.Nodes[0]; 135this.treeView.BeginUpdate(); 138this.treeView.Nodes.Clear(); 146this.treeView.ExpandAll(); 150this.treeView.EndUpdate(); 158this.treeView.SelectedNode = this.activityToNodeMapping[selectionService.PrimarySelection] as WorkflowOutlineNode; 159if (this.treeView.SelectedNode != null) 160this.treeView.SelectedNode.EnsureVisible(); 169if (this.treeView.Nodes.Count > 0) 170RefreshNode(this.treeView.Nodes[0] as WorkflowOutlineNode, true); 202int imageIndex = (this.treeView.ImageList != null) ? this.treeView.ImageList.Images.IndexOfKey(activity.GetType().FullName) : -1; 211if (this.treeView.ImageList == null) 213this.treeView.ImageList = new ImageList(); 214this.treeView.ImageList.ColorDepth = ColorDepth.Depth32Bit; 217this.treeView.ImageList.Images.Add(activity.GetType().FullName, activityImage); 218imageIndex = this.treeView.ImageList.Images.Count - 1; 266this.treeView.BeginUpdate(); 289this.treeView.EndUpdate(); 309return this.treeView; 317this.treeView.BeforeExpand += value; 321this.treeView.BeforeExpand -= value; 369this.treeView.Nodes.Add(newNode); 402if (this.IsDirty && this.treeView.Visible) 411this.treeView.SelectedNode = this.activityToNodeMapping[selectionService.PrimarySelection] as WorkflowOutlineNode; 412if (this.treeView.SelectedNode != null) 413this.treeView.SelectedNode.EnsureVisible(); 430if (this.treeView.GetNodeAt(e.Location) != null) 431this.treeView.SelectedNode = this.treeView.GetNodeAt(e.Location); 436if (this.treeView.Nodes.Count > 0) 438this.treeView.ImageList.Images.Clear();