42 references to GetDesigner
System (1)
compmod\system\componentmodel\TypeDescriptor.cs (1)
1343object designer = host.GetDesigner(component);
System.Drawing (1)
commonui\System\Drawing\Design\ToolboxItem.cs (1)
394IComponentInitializer init = host.GetDesigner(components[i]) as IComponentInitializer;
System.Web (1)
UI\TagNameToTypeMapper.cs (1)
121WebFormsRootDesigner rootDesigner = _parser.DesignerHost.GetDesigner(_parser.DesignerHost.RootComponent) as WebFormsRootDesigner;
System.Web.Entity.Design (2)
System\Data\WebControls\Design\EntityDataSourceDesignerHelper.cs (1)
92_owner = designerHost.GetDesigner(this.EntityDataSource) as EntityDataSourceDesigner;
System\Data\WebControls\Design\EntityDataSourceStatementEditor.cs (1)
37EntityDataSourceDesigner designer = (EntityDataSourceDesigner)designerHost.GetDesigner(entityDataSource);
System.Web.Mobile (16)
UI\MobileControls\Design\Adapters\DesignerAdapterUtil.cs (1)
53return ((IDesignerHost) compSite.GetService(typeof(IDesignerHost))).GetDesigner(component);
UI\MobileControls\Design\AppliedDeviceFiltersEditor.cs (1)
58designerHost.GetDesigner(ctrl) as IDeviceSpecificDesigner;
UI\MobileControls\Design\BaseTemplatedMobileComponentEditor.cs (1)
70IDesigner compDesigner = designerHost.GetDesigner(comp);
UI\MobileControls\Design\CommandCollectionEditor.cs (1)
59ObjectListDesigner _designer = (ObjectListDesigner)designerHost.GetDesigner(_objectList);
UI\MobileControls\Design\Converters\ChoiceConverter.cs (1)
60Object designer = designerHost.GetDesigner(ss);
UI\MobileControls\Design\Converters\DataFieldConverter.cs (1)
157IDesigner designer = designerHost.GetDesigner(component);
UI\MobileControls\Design\Converters\DataMemberConverter.cs (1)
108IDesigner designer = designerHost.GetDesigner(component);
UI\MobileControls\Design\DeviceSpecificDesigner.cs (2)
124IDesigner designer = host.GetDesigner((IComponent) newDS); 292IDesigner designer = host.GetDesigner((IComponent) _parentContainer.DeviceSpecific);
UI\MobileControls\Design\FieldCollectionEditor.cs (1)
59ObjectListDesigner _designer = (ObjectListDesigner)designerHost.GetDesigner(_objectList);
UI\MobileControls\Design\ItemCollectionEditor.cs (1)
57IDesigner designer = designerHost.GetDesigner((IComponent)obj);
UI\MobileControls\Design\MobileComponentEditorPage.cs (1)
105_designer = (ControlDesigner)designerHost.GetDesigner(GetSelectedComponent());
UI\MobileControls\Design\MobileUITypeEditor.cs (1)
36ControlDesigner designer = (ControlDesigner)designerHost.GetDesigner(control);
UI\MobileControls\Design\PropertyOverridesTypeEditor.cs (1)
58designerHost.GetDesigner(ctrl) as IDeviceSpecificDesigner;
UI\MobileControls\Design\StyleSheetDesigner.cs (2)
269designer = Host.GetDesigner((IComponent) control); 406IDesigner designer = Host.GetDesigner((IComponent) MobilePage.StyleSheet);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
2166IDesigner designer = designerHost.GetDesigner(component);
System.Workflow.Activities (3)
Common\CompModHelpers.cs (2)
311ActivityDesigner activityDesigner = designerHost.GetDesigner(component) as ActivityDesigner; 360ActivityDesigner activityDesigner = designerHost.GetDesigner(component) as ActivityDesigner;
Designers\StateDesigner.cs (1)
2255designer = designerHost.GetDesigner(activity) as ActivityDesigner;
System.Workflow.ComponentModel (15)
AuthoringOM\Design\ActivityDesigner.cs (1)
1936designer = designerHost.GetDesigner(activity) as ActivityDesigner;
AuthoringOM\Design\ActivityDesignerLayoutSerializers.cs (2)
71designer = host.GetDesigner(activity); 89designer = host.GetDesigner(matchingActivity);
AuthoringOM\Design\ActivityPreviewDesigner.cs (1)
740EnsureVisibleContainedDesigner(designerHost.GetDesigner(((Activity)itemInfo.UserData[DesignerUserDataKeys.Activity])) as ActivityDesigner);
AuthoringOM\Design\CompositeActivityDesigner.cs (2)
398ActivityDesigner designer = host.GetDesigner(childActivity) as ActivityDesigner; 772designerToInsert = (designerHost != null) ? designerHost.GetDesigner((IComponent)activity) as ActivityDesigner : null;
AuthoringOM\Design\CustomActivityDesigner.cs (1)
330CompositeActivityDesigner rootDesigner = host.GetDesigner(host.RootComponent) as CompositeActivityDesigner;
AuthoringOM\Design\DesignerHelpers.cs (2)
1269ActivityDesigner designer = designerHost.GetDesigner(component) as ActivityDesigner; 1298ActivityDesigner designer = designerHost.GetDesigner(designerHost.Container.Components[componentName]) as ActivityDesigner;
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (3)
1025CompositeActivityDesigner compositeDesigner = host.GetDesigner(rootDecl) as CompositeActivityDesigner; 1026ActivityDesigner activityDesigner = host.GetDesigner(activity) as ActivityDesigner; 1056return (previewActivity != null) ? host.GetDesigner(previewActivity) : null;
AuthoringOM\Design\XomlDesignerLoader.cs (1)
301rootDesigner = designerHost.GetDesigner(designerHost.RootComponent) as ActivityDesigner;
Shared\CompModHelpers.cs (2)
309ActivityDesigner activityDesigner = designerHost.GetDesigner(component) as ActivityDesigner; 358ActivityDesigner activityDesigner = designerHost.GetDesigner(component) as ActivityDesigner;
System.WorkflowServices (2)
System\Workflow\ComponentModel\Design\ActivityDesignerHighlighter.cs (1)
61highlightProvider = new HighlightGlyphProvider(designerHost.GetDesigner(designerHost.RootComponent) as ActivityDesigner, highlightedDesigners);
System\Workflow\ComponentModel\Design\FindSimilarActivitiesVerb.cs (1)
50return designerHost.GetDesigner(activity as IComponent) as ActivityDesigner;