1 type derived from ListView
Microsoft.VisualStudio.LanguageServices (1)
Utilities\AutomationDelegatingListView.cs (1)
18internal class AutomationDelegatingListView : ListView
3 instantiations of ListView
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7123DefaultConstructor = delegate () { return new System.Windows.Controls.ListView(); },
System\Windows\Markup\KnownTypes.cs (1)
1385case KnownElements.ListView: o = new System.Windows.Controls.ListView(); break;
Roslyn.VisualStudio.DiagnosticsWindow (1)
PerfMargin\PerfMarginPanel.cs (1)
89var listView = new ListView();
32 references to ListView
Microsoft.VisualStudio.LanguageServices (4)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\PullMemberUp\WarningDialog\PullMemberUpWarningDialog.g.cs (2)
60internal System.Windows.Controls.ListView ProblemsListView; 103this.ProblemsListView = ((System.Windows.Controls.ListView)(target));
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\StackTraceExplorer\StackTraceExplorer.g.cs (1)
93((System.Windows.Controls.ListView)(target)).MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.ListViewItem_MouseDoubleClick);
EditorConfigSettings\Common\TableControlFocusFixer.cs (1)
27if (e.NewFocus is not ListView && (e.KeyboardDevice.IsKeyDown(Key.Left) || e.KeyboardDevice.IsKeyDown(Key.Right)))
PresentationFramework (23)
System\Windows\Automation\Peers\GridViewAutomationPeer.cs (2)
28public GridViewAutomationPeer(GridView owner, ListView listview) 317private ListView _listview;
System\Windows\Automation\Peers\GridViewCellAutomationPeer.cs (2)
102ListView listview = _listviewAP.Owner as ListView;
System\Windows\Automation\Peers\GridViewItemAutomationPeer.cs (2)
39ListView listview = _listviewAP.Owner as ListView;
System\Windows\Automation\Peers\ListViewAutomationPeer.cs (1)
15public ListViewAutomationPeer(ListView owner)
System\Windows\Controls\GridView.cs (3)
98internal protected override IViewAutomationPeer GetAutomationPeer(ListView parent) 203ListView listView = listViewItem.ParentSelector as ListView;
System\Windows\Controls\GridViewHeaderRowPresenter.cs (2)
1064ListView lv = _itemsControl as ListView;
System\Windows\Controls\ListView.cs (4)
42SelectionModeProperty.OverrideMetadata(typeof(ListView), new FrameworkPropertyMetadata(SelectionMode.Extended)); 70typeof(ListView), 86ListView listView = (ListView)d;
System\Windows\Controls\ViewBase.cs (1)
108internal protected virtual IViewAutomationPeer GetAutomationPeer(ListView parent)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
471case 377: t = () => typeof(ListView); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5411Type type = typeof(System.Windows.Controls.ListView); 5413this.GetXamlType(typeof(System.Windows.Controls.ListView)), // DeclaringType 5420GetDelegate = delegate (object target) { return ((System.Windows.Controls.ListView)target).Items; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
7120typeof(System.Windows.Controls.ListView),
System\Windows\Markup\KnownTypes.cs (1)
5925case KnownElements.ListView: t = typeof(System.Windows.Controls.ListView); break;
Roslyn.VisualStudio.DiagnosticsWindow (5)
artifacts\obj\Roslyn.VisualStudio.DiagnosticsWindow\Release\net472\VenusMargin\ProjectionBufferMargin.g.cs (1)
76((System.Windows.Controls.ListView)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ListView_SelectionChanged);
PerfMargin\PerfMarginPanel.cs (4)
23private readonly ListView _mainListView; 29private ListView _detailsListView; 87private ListView CreateContent(IEnumerable<ActivityLevel> items, bool useWrapPanel) 89var listView = new ListView();