23 references to ListView
System.Windows.Forms (23)
winforms\Managed\System\WinForms\DrawListViewItemEventArgs.cs (2)
165if (item.ListView.View == View.Details) { 169if (!item.ListView.FullRowSelect && item.SubItems.Count > 0) {
winforms\Managed\System\WinForms\ListView.cs (3)
1712if (value.ListView != this) 4747if(item.ListView == this) { 6791if (item != null && item.ListView == owner && item.Checked) {
winforms\Managed\System\WinForms\ListViewGroup.cs (3)
515if (item.ListView != null && item.ListView != this.listView) { 623if (item.ListView == this.listView) {
winforms\Managed\System\WinForms\ListViewGroupConverter.cs (4)
69if (item != null && item.ListView != null) { 71foreach(ListViewGroup group in item.ListView.Groups) { 129if (item != null && item.ListView != null) { 131foreach (ListViewGroup group in item.ListView.Groups) {
winforms\Managed\System\WinForms\ListViewGroupItemCollection.cs (5)
101if (item.ListView != null && item.ListView != this.group.ListView) { 168if (item.ListView != null && item.ListView.IsHandleCreated && !item.ListView.InsertingItemsNatively) {
winforms\Managed\System\WinForms\ListViewItem.cs (6)
957ListView lv = ListView; 1033return this.ListView.FindNearestItem(searchDirection, r.Left, r.Top); 1035return this.ListView.FindNearestItem(searchDirection, r.Left, r.Bottom); 1037return this.ListView.FindNearestItem(searchDirection, r.Left, r.Top); 1039return this.ListView.FindNearestItem(searchDirection, r.Right, r.Top); 1204foreach (ListViewGroup lvg in ListView.Groups) {