7 implementations of GetView
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentDocumentDesigner.cs (1)
83object IRootDesigner.GetView(ViewTechnology technology)
System\Windows\Forms\Design\DocumentDesigner.cs (1)
1409object IRootDesigner.GetView(ViewTechnology technology) =>
System.Windows.Forms.Design.Tests (5)
System\ComponentModel\Design\DesignerHostTests.cs (1)
3197public object GetView(ViewTechnology technology) => throw new NotImplementedException();
System\ComponentModel\Design\DesignSurfaceTests.cs (3)
1768public object GetView(ViewTechnology technology) 1783public object GetView(ViewTechnology technology) => throw new NotImplementedException(); 1794public object GetView(ViewTechnology technology) => throw new NotImplementedException();
System\ComponentModel\Design\SiteNestedContainerTests.cs (1)
1069public object GetView(ViewTechnology technology) => throw new NotImplementedException();
3 references to GetView
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignSurface.cs (1)
174return rootDesigner.GetView(designerViews[0]);
System\Windows\Forms\Design\ComponentTray.cs (1)
1703if (rd.GetView(techs[0]) is Control view)
System\Windows\Forms\Design\ControlDesigner.cs (1)
2192if (rd.GetView(techs[0]) is Control view)