AttributeProviderAttribute Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Initialise une nouvelle instance de la classe AttributeProviderAttribute.
Surcharges
AttributeProviderAttribute(String) |
Initialise une nouvelle instance de la classe AttributeProviderAttribute à l'aide du nom de type donné. |
AttributeProviderAttribute(Type) |
Initialise une nouvelle instance de la classe AttributeProviderAttribute à l'aide du type donné. |
AttributeProviderAttribute(String, String) |
Initialise une nouvelle instance de la classe AttributeProviderAttribute avec le nom de type et le nom de propriété donnés. |
AttributeProviderAttribute(String)
Initialise une nouvelle instance de la classe AttributeProviderAttribute à l'aide du nom de type donné.
public:
AttributeProviderAttribute(System::String ^ typeName);
public AttributeProviderAttribute (string typeName);
new System.ComponentModel.AttributeProviderAttribute : string -> System.ComponentModel.AttributeProviderAttribute
Public Sub New (typeName As String)
Paramètres
- typeName
- String
Nom du type à spécifier.
Exceptions
typeName
a la valeur null
.
Voir aussi
S’applique à
AttributeProviderAttribute(Type)
Initialise une nouvelle instance de la classe AttributeProviderAttribute à l'aide du type donné.
public:
AttributeProviderAttribute(Type ^ type);
public AttributeProviderAttribute (Type type);
new System.ComponentModel.AttributeProviderAttribute : Type -> System.ComponentModel.AttributeProviderAttribute
Public Sub New (type As Type)
Paramètres
- type
- Type
Type à spécifier.
Exceptions
type
a la valeur null
.
Exemples
L’exemple de code suivant illustre l’utilisation AttributeProviderAttribute de pour marquer une DataSource
propriété avec un type spécifique de IListSource. Pour obtenir la liste complète du code, consultez Guide pratique pour appliquer des attributs dans les contrôles Windows Forms.
[Category("Data")]
[Description("Indicates the source of data for the control.")]
[RefreshProperties(RefreshProperties.Repaint)]
[AttributeProvider(typeof(IListSource))]
public object DataSource
{
get
{
return this.dataGridView1.DataSource;
}
set
{
this.dataGridView1.DataSource = value;
}
}
<Category("Data"), _
Description("Indicates the source of data for the control."), _
RefreshProperties(RefreshProperties.Repaint), _
AttributeProvider(GetType(IListSource))> _
Public Property DataSource() As Object
Get
Return Me.dataGridView1.DataSource
End Get
Set(ByVal value As Object)
Me.dataGridView1.DataSource = value
End Set
End Property
Voir aussi
S’applique à
AttributeProviderAttribute(String, String)
Initialise une nouvelle instance de la classe AttributeProviderAttribute avec le nom de type et le nom de propriété donnés.
public:
AttributeProviderAttribute(System::String ^ typeName, System::String ^ propertyName);
public AttributeProviderAttribute (string typeName, string propertyName);
new System.ComponentModel.AttributeProviderAttribute : string * string -> System.ComponentModel.AttributeProviderAttribute
Public Sub New (typeName As String, propertyName As String)
Paramètres
- typeName
- String
Nom du type à spécifier.
- propertyName
- String
Nom de la propriété pour laquelle les attributs seront récupérés.
Exceptions
propertyName
a la valeur null
.