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)
6494bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.ListView(); };
System\Windows\Markup\KnownTypes.cs (1)
1391case 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)
40public GridViewAutomationPeer(GridView owner, ListView listview) 329private ListView _listview;
System\Windows\Automation\Peers\GridViewCellAutomationPeer.cs (2)
113ListView listview = _listviewAP.Owner as ListView;
System\Windows\Automation\Peers\GridViewItemAutomationPeer.cs (2)
51ListView listview = _listviewAP.Owner as ListView;
System\Windows\Automation\Peers\ListViewAutomationPeer.cs (1)
27public ListViewAutomationPeer(ListView owner)
System\Windows\Controls\GridView.cs (3)
99internal protected override IViewAutomationPeer GetAutomationPeer(ListView parent) 204ListView listView = listViewItem.ParentSelector as ListView;
System\Windows\Controls\GridViewHeaderRowPresenter.cs (2)
1065ListView 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)
109internal protected virtual IViewAutomationPeer GetAutomationPeer(ListView parent)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
473case 377: t = () => typeof(ListView); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5089Type type = typeof(System.Windows.Controls.ListView); 5091this.GetXamlType(typeof(System.Windows.Controls.ListView)), // DeclaringType 5097bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.ListView)target).Items; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6492typeof(System.Windows.Controls.ListView),
System\Windows\Markup\KnownTypes.cs (1)
5931case 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();