Home
last modified time | relevance | path

Searched refs:DesignerAttribute (Results 1 – 25 of 171) sorted by relevance

1234567

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.ComponentModel/
H A DDesignerAttributeTest.cs24 DesignerAttribute da; in Constructor1()
26 da = new DesignerAttribute ("CategoryType"); in Constructor1()
36 da = new DesignerAttribute (string.Empty); in Constructor1()
46 new DesignerAttribute ((string) null); in Constructor1_DesignerTypeName_Null()
52 DesignerAttribute da = new DesignerAttribute (typeof (string)); in Constructor2()
62 new DesignerAttribute ((Type) null); in Constructor2_DesignerType_Null()
68 DesignerAttribute da; in Constructor3()
89 DesignerAttribute da = new DesignerAttribute ( in Constructor3_DesignerBaseType_Null()
110 DesignerAttribute da; in Constructor4()
132 new DesignerAttribute ("CategoryType", (Type) null); in Constructor4_DesignerBaseTypeName_Null()
[all …]
H A DTypeDescriptorTests.cs218 [DesignerAttribute (typeof(MyDesigner), typeof(int))]
293 [DesignerAttribute (typeof(MyOtherDesigner))]
331 [DesignerAttribute (typeof(MyDesigner), typeof(int))]
365 [DesignerAttribute (typeof(MyDesigner), typeof(int))]
1136 Assert.IsNotNull (col [typeof (DesignerAttribute)], "#A2"); in TestGetAttributes()
1141 Assert.IsNotNull (col [typeof (DesignerAttribute)], "#B2"); in TestGetAttributes()
1146 Assert.IsNotNull (col [typeof (DesignerAttribute)], "#C2"); in TestGetAttributes()
1151 Assert.IsNotNull (col [typeof (DesignerAttribute)], "#D2"); in TestGetAttributes()
1155 Assert.IsNotNull (col [typeof (DesignerAttribute)], "#E1"); in TestGetAttributes()
1157 DesignerAttribute attribute = col[typeof(DesignerAttribute)] as DesignerAttribute; in TestGetAttributes()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/
H A DDesignerAttribute.cs18 public sealed class DesignerAttribute : Attribute class
28 public DesignerAttribute(string designerTypeName) in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
42 public DesignerAttribute(Type designerType) in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
54 public DesignerAttribute(string designerTypeName, string designerBaseTypeName) in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
68 public DesignerAttribute(string designerTypeName, Type designerBaseType) in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
82 public DesignerAttribute(Type designerType, Type designerBaseType) in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
138 DesignerAttribute other = obj as DesignerAttribute; in Equals()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DDesignerAttribute.cs21 public sealed class DesignerAttribute : Attribute { class
32 public DesignerAttribute(string designerTypeName) { in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
45 public DesignerAttribute(Type designerType) { in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
56 public DesignerAttribute(string designerTypeName, string designerBaseTypeName) { in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
69 public DesignerAttribute(string designerTypeName, Type designerBaseType) { in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
82 public DesignerAttribute(Type designerType, Type designerBaseType) { in DesignerAttribute() method in System.ComponentModel.DesignerAttribute
139 DesignerAttribute other = obj as DesignerAttribute; in Equals()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/Activities/Core/Presentation/
H A DDesignerMetadata.cs51 builder.AddCustomAttributes(typeof(Send), new DesignerAttribute(typeof(SendDesigner))); in Register()
54 … builder.AddCustomAttributes(typeof(Receive), new DesignerAttribute(typeof(ReceiveDesigner))); in Register()
58 … builder.AddCustomAttributes(typeof(SendReply), new DesignerAttribute(typeof(SendReplyDesigner))); in Register()
63 …builder.AddCustomAttributes(typeof(ReceiveReply), new DesignerAttribute(typeof(ReceiveReplyDesigne… in Register()
67 …builder.AddCustomAttributes(typeof(InitializeCorrelation), new DesignerAttribute(typeof(Initialize… in Register()
H A DTransactionScopeDesigner.xaml.cs22 … builder.AddCustomAttributes(type, new DesignerAttribute(typeof(TransactionScopeDesigner))); in RegisterMetadata()
H A DWriteLineDesigner.xaml.cs22 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(WriteLineDesigner))); in RegisterMetadata()
H A DDoWhileDesigner.xaml.cs24 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(DoWhileDesigner))); in RegisterMetadata()
H A DNoPersistScopeDesigner.xaml.cs24 … builder.AddCustomAttributes(type, new DesignerAttribute(typeof(NoPersistScopeDesigner))); in RegisterMetadata()
H A DCancellationScopeDesigner.xaml.cs22 … builder.AddCustomAttributes(type, new DesignerAttribute(typeof(CancellationScopeDesigner))); in RegisterMetadata()
H A DWhileDesigner.xaml.cs26 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(WhileDesigner))); in RegisterMetadata()
H A DCompensableActivityDesigner.xaml.cs25 … builder.AddCustomAttributes(type, new DesignerAttribute(typeof(CompensableActivityDesigner))); in RegisterMetadata()
H A DPickBranchDesigner.xaml.cs27 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(PickBranchDesigner))); in RegisterMetadata()
H A DParallelDesigner.xaml.cs26 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(ParallelDesigner))); in RegisterMetadata()
H A DSequenceDesigner.xaml.cs42 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(SequenceDesigner))); in RegisterMetadata()
H A DInvokeMethodDesigner.xaml.cs30 builder.AddCustomAttributes(type, new DesignerAttribute(typeof(InvokeMethodDesigner))); in RegisterMetadata()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Design/System.ComponentModel.Design/
H A DDesignerHost.cs320 DesignerAttribute designerAttr = attribute as DesignerAttribute; in CreateDesigner()
338 DesignerAttribute designerAttr = attribute as DesignerAttribute; in CreateDesigner()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.UI.WebControls/
H A DContentPlaceHolder.cs39 …[DesignerAttribute ("System.Web.UI.Design.WebControls.ContentPlaceHolderDesigner, " + Consts.Assem…
H A DContent.cs37 …[DesignerAttribute ("System.Web.UI.Design.WebControls.ContentDesigner, " + Consts.AssemblySystem_D…
H A DView.cs41 …[DesignerAttribute ("System.Web.UI.Design.WebControls.ViewDesigner, " + Consts.AssemblySystem_Desi…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/ServiceModel/Activities/Presentation/
H A DCorrelationScopeDesigner.xaml.cs22 … builder.AddCustomAttributes(type, new DesignerAttribute(typeof(CorrelationScopeDesigner))); in RegisterMetadata()
H A DTransactedReceiveScope.xaml.cs21 … builder.AddCustomAttributes(type, new DesignerAttribute(typeof(TransactedReceiveScopeDesigner))); in RegisterMetadata()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/
H A DCustomActivityDesigner.cs72DesignerAttribute rootDesignerAttrib = GetDesignerAttribute(rootActivity, typeof(IRootDesigner)); in OnComponentAdding()
75DesignerAttribute designerAttrib = GetDesignerAttribute(rootActivity, typeof(IDesigner)); in OnComponentAdding()
77 …TypeDescriptor.AddAttributes(rootActivity, new Attribute[] { new DesignerAttribute(designerAttrib.… in OnComponentAdding()
136 … private static DesignerAttribute GetDesignerAttribute(object component, Type designerBaseType) in GetDesignerAttribute()
141 DesignerAttribute designerAttribute = attribute as DesignerAttribute; in GetDesignerAttribute()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities.Core.Presentation/System/ServiceModel/Presentation/
H A DServiceDesigner.xaml.cs44 … builder.AddCustomAttributes(serviceType, new DesignerAttribute(typeof(ServiceDesigner))); in RegisterMetadata()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.UI/
H A DHierarchicalDataSourceControl.cs41 …[DesignerAttribute ("System.Web.UI.Design.HierarchicalDataSourceDesigner, " + Consts.AssemblySyste…

1234567