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