1 write to artifactListView
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
140this.artifactListView = new System.Windows.Forms.ListView();
42 references to artifactListView
System.Workflow.ComponentModel (42)
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (42)
208this.typeSplitContainer.Panel2.Controls.Add(this.artifactListView); 222this.artifactListView.AllowColumnReorder = true; 223this.artifactListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 226resources.ApplyResources(this.artifactListView, "artifactListView"); 227this.artifactListView.Name = "artifactListView"; 228this.artifactListView.UseCompatibleStateImageBehavior = false; 229this.artifactListView.View = System.Windows.Forms.View.Details; 230this.artifactListView.SelectedIndexChanged += new System.EventHandler(this.OnListViewSelectedIndexChanged); 231this.artifactListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.OnListViewColumnClick); 585if ((!this.refreshTypeTextBox) && (this.artifactListView.SelectedItems.Count > 0)) 586this.typeTextBox.Text = (this.artifactListView.SelectedItems[0].Tag as Type).FullName; 588if (this.artifactListView.SelectedItems.Count > 0) 589this.artifactListView.SelectedItems[0].EnsureVisible(); 592if (!this.artifactListView.Focused || this.artifactListView.SelectedItems.Count == 0) 595Type type = this.artifactListView.SelectedItems[0].Tag as Type; 609this.artifactListView.SelectedItems.Count > 0 && 610this.artifactListView.SelectedItems[0].Tag is Type && 670foreach (ListViewItem lvItem in this.artifactListView.Items) 685if (this.artifactListView.SelectedItems.Count != 0) 686this.artifactListView.SelectedItems[0].Selected = false; 792this.artifactListView.Dock = DockStyle.Fill; 793this.artifactListView.FullRowSelect = true; 794this.artifactListView.HideSelection = false; 795this.artifactListView.MultiSelect = false; 796this.artifactListView.SmallImageList = this.artifactImages; 797this.artifactListView.MouseDown += new MouseEventHandler(OnListViewMouseDown); 833if (this.artifactListView.Focused) 836this.artifactListView.Items.Clear(); 837this.artifactListView.ListViewItemSorter = null; 887this.artifactListView.Items.Add(listItem); 891this.artifactListView.SelectedIndices.Clear(); 894if (this.artifactListView.Items.Count > 0) 895this.artifactListView.Items[0].Selected = true; 983if (columnIndex < 0 || columnIndex >= this.artifactListView.Columns.Count) 987this.artifactListView.ListViewItemSorter = listItemComparer; 989if (this.artifactListView.SelectedItems.Count > 0) 990this.artifactListView.SelectedItems[0].EnsureVisible(); 993IntPtr headerWindow = NativeMethods.ListView_GetHeader(this.artifactListView.Handle); 996for (int i = 0; i < this.artifactListView.Columns.Count; i++) 1039if (this.artifactListView.SelectedItems.Count > 0) 1041Type type = this.artifactListView.SelectedItems[0].Tag as Type;