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