12 references to View
PresentationFramework (12)
System\Windows\Automation\Peers\GridViewCellAutomationPeer.cs (2)
102if (listview != null && listview.View is GridView) 104GridView gridview = listview.View as GridView;
System\Windows\Controls\GridView.cs (1)
205GridView gridView = listView.View as GridView;
System\Windows\Controls\GridViewHeaderRowPresenter.cs (3)
1061if (lv != null && lv.View != null && lv.View is GridView) 1063((GridView)lv.View).HeaderRowPresenter = this;
System\Windows\Controls\ListView.cs (6)
152ViewBase view = View; 222if (lvPeer != null && View != null) 224lvPeer.ViewAutomationPeer = View.GetAutomationPeer(this); 243ViewBase newView = View; 269if (!HasTemplateGeneratedSubTree && View != null) 271View.OnThemeChanged();