Home
last modified time | relevance | path

Searched refs:designerType (Results 1 – 25 of 29) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Entity.Design/System/Data/WebControls/Design/
H A DEntityDataSourceDesigner.cs377 Type designerType = GetType(); in PreFilterProperties()
378 …properties["ConnectionString"] = TypeDescriptor.CreateProperty(designerType, "ConnectionString", t… in PreFilterProperties()
379 …properties["DefaultContainerName"] = TypeDescriptor.CreateProperty(designerType, "DefaultContainer… in PreFilterProperties()
380 …properties["EntitySetName"] = TypeDescriptor.CreateProperty(designerType, "EntitySetName", typeof(… in PreFilterProperties()
381 …properties["EntityTypeFilter"] = TypeDescriptor.CreateProperty(designerType, "EntityTypeFilter", t… in PreFilterProperties()
382 …properties["CommandText"] = TypeDescriptor.CreateProperty(designerType, "CommandText", typeof(stri… in PreFilterProperties()
383 … properties["OrderBy"] = TypeDescriptor.CreateProperty(designerType, "OrderBy", typeof(string)); in PreFilterProperties()
384 … properties["Select"] = TypeDescriptor.CreateProperty(designerType, "Select", typeof(string)); in PreFilterProperties()
385 … properties["Where"] = TypeDescriptor.CreateProperty(designerType, "Where", typeof(string)); in PreFilterProperties()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/
H A DDesignerAttribute.cs42 public DesignerAttribute(Type designerType) in DesignerAttribute() argument
44 DesignerTypeName = designerType.AssemblyQualifiedName; in DesignerAttribute()
82 public DesignerAttribute(Type designerType, Type designerBaseType) in DesignerAttribute() argument
84 DesignerTypeName = designerType.AssemblyQualifiedName; in DesignerAttribute()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DDesignerAttribute.cs45 public DesignerAttribute(Type designerType) { in DesignerAttribute() argument
46 this.designerTypeName = designerType.AssemblyQualifiedName; in DesignerAttribute()
82 public DesignerAttribute(Type designerType, Type designerBaseType) { in DesignerAttribute() argument
83 this.designerTypeName = designerType.AssemblyQualifiedName; in DesignerAttribute()
H A DDebugTypeDescriptor.cs115 Type designerType = null; in CreateDesigner()
136 designerType = tr.GetType(da.DesignerTypeName); in CreateDesigner()
141 designerType = Type.GetType(da.DesignerTypeName); in CreateDesigner()
144 …Debug.Assert(designerType != null, "It may be okay for the designer not to load, but we failed to … in CreateDesigner()
145 if (designerType != null) { in CreateDesigner()
152 if (designerType != null) { in CreateDesigner()
153 …designer = (IDesigner)Activator.CreateInstance(designerType, BindingFlags.Instance | BindingFlags.… in CreateDesigner()
H A DTypeDescriptor.cs581 Type designerType = null; in CreateDesigner()
605 designerType = tr.GetType(da.DesignerTypeName); in CreateDesigner()
611 designerType = Type.GetType(da.DesignerTypeName); in CreateDesigner()
614 …Debug.Assert(designerType != null, "It may be okay for the designer not to load, but we failed to … in CreateDesigner()
615 if (designerType != null) in CreateDesigner()
623 if (designerType != null) in CreateDesigner()
625 designer = (IDesigner)SecurityUtils.SecureCreateInstance(designerType, null, true); in CreateDesigner()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/
H A DSelectionListDesigner.cs508 Type designerType = this.GetType(); in PreFilterProperties()
511 designerType, in PreFilterProperties()
518 designerType, in PreFilterProperties()
524 designerType, in PreFilterProperties()
530 designerType, in PreFilterProperties()
H A DListDesigner.cs620 Type designerType = this.GetType(); in PreFilterProperties()
623 designerType, in PreFilterProperties()
630 designerType, in PreFilterProperties()
636 designerType, in PreFilterProperties()
642 designerType, in PreFilterProperties()
H A DObjectListDesigner.cs222 Type designerType = this.GetType(); in PreFilterProperties()
225 designerType, in PreFilterProperties()
232 designerType, in PreFilterProperties()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/Dialogs/
H A DThemeConfigurationDialog.cs725 … Type designerType = ActivityDesigner.GetDesignerType(serviceProvider, type, designerBaseType); in PopulateActivities()
726 if (designerType != null && !nonpreviewableDesignerTypes.Contains(designerType)) in PopulateActivities()
728 … object[] attribs = designerType.GetCustomAttributes(typeof(ActivityDesignerThemeAttribute), true); in PopulateActivities()
764 … internal static TreeNode GetCatagoryNodeForDesigner(Type designerType, TreeNode[] treeNodes) in GetCatagoryNodeForDesigner() argument
766 if (designerType == null) in GetCatagoryNodeForDesigner()
775 Type baseType = designerType; in GetCatagoryNodeForDesigner()
837 …Type designerType = ActivityDesigner.GetDesignerType(serviceProvider, activityType, designerBaseTy… in GetDesignerThemes()
838 if (designerType != null) in GetDesignerThemes()
840 DesignerTheme designerTheme = workflowTheme.GetTheme(designerType); in GetDesignerThemes()
885 if (designerType != null) in EnsureDesignerThemes()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/Adapters/
H A DDesignerAdapterUtil.cs154 Type designerType, in AddAttributesToProperty() argument
166 designerType, in AddAttributesToProperty()
174 Type designerType, in AddAttributesToPropertiesOfDifferentType() argument
195 designerType, in AddAttributesToPropertiesOfDifferentType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/
H A DThemes.cs687 internal DesignerTheme GetTheme(Type designerType) in GetTheme() argument
690 … designerTheme = (this.designerThemes.Contains(designerType.FullName)) ? this.designerThemes[desig… in GetTheme()
701 … AttributeCollection attributeCollection = TypeDescriptor.GetAttributes(designerType); in GetTheme()
712 … Stream stream = designerType.Assembly.GetManifestResourceStream(designerType, themeAttrib.Xml); in GetTheme()
774 designerTheme.DesignerType = designerType; in GetTheme()
775 designerTheme.ApplyTo = designerType.FullName; in GetTheme()
778 this.designerThemes.Remove(designerType.FullName); in GetTheme()
783 designerTheme.DesignerType = designerType; in GetTheme()
849 private Type designerType = null; field in System.Workflow.ComponentModel.Design.DesignerTheme
894 return this.designerType;
[all …]
H A DActivityDesigner.cs1992 Type designerType = null; in GetDesignerType()
2001 designerType = activityType.Assembly.GetType(designerTypeName); in GetDesignerType()
2002 if (designerType == null && serviceProvider != null) in GetDesignerType()
2005designerType = (typeResolutionService != null) ? typeResolutionService.GetType(designerAttribute.D… in GetDesignerType()
2008 if (designerType == null) in GetDesignerType()
2009 designerType = Type.GetType(designerAttribute.DesignerTypeName); in GetDesignerType()
2015 return designerType; in GetDesignerType()
2021 … Type designerType = GetDesignerType(serviceProvider, activity.GetType(), typeof(IDesigner)); in CreateDesigner()
2022 if (designerType == null) in CreateDesigner()
2023 designerType = GetDesignerType(serviceProvider, activity.GetType(), null); in CreateDesigner()
[all …]
H A DThemes.cs.back687 internal DesignerTheme GetTheme(Type designerType)
690 … designerTheme = (this.designerThemes.Contains(designerType.FullName)) ? this.designerThemes[desig…
701 … AttributeCollection attributeCollection = TypeDescriptor.GetAttributes(designerType);
712 … Stream stream = designerType.Assembly.GetManifestResourceStream(designerType, themeAttrib.Xml);
774 designerTheme.DesignerType = designerType;
775 designerTheme.ApplyTo = designerType.FullName;
778 this.designerThemes.Remove(designerType.FullName);
783 designerTheme.DesignerType = designerType;
849 private Type designerType = null;
894 return this.designerType;
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/ref/
H A DSystem.ComponentModel.cs263 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
264 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs1703 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
1704 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs1706 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
1707 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs1701 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
1702 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.cs1702 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
1703 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.cs3337 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3338 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.cs3092 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3093 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs3147 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3148 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.cs3168 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3169 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DSystem.cs3168 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3169 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A DSystem.cs3147 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3148 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5/
H A DSystem.cs3147 public DesignerAttribute(System.Type designerType) { } in DesignerAttribute() argument
3148 public DesignerAttribute(System.Type designerType, System.Type designerBaseType) { } in DesignerAttribute() argument

12