Control.CreateControlCollection Méthode
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.
Crée un objet ControlCollection pour contenir les contrôles enfants (littéraux et serveur) du contrôle serveur.
protected:
virtual System::Web::UI::ControlCollection ^ CreateControlCollection();
protected virtual System.Web.UI.ControlCollection CreateControlCollection ();
abstract member CreateControlCollection : unit -> System.Web.UI.ControlCollection
override this.CreateControlCollection : unit -> System.Web.UI.ControlCollection
Protected Overridable Function CreateControlCollection () As ControlCollection
Retours
Objet ControlCollection pour contenir les contrôles serveur enfants du contrôle serveur actuel.
Exemples
L’exemple de code suivant remplace la CreateControlCollection méthode pour créer une instance d’une CustomControlCollection
classe, qui hérite de la ControlCollection classe.
// Override the CreateControlCollection method to
// write to the Trace object when tracing is enabled
// for the page or application in which this control
// is included.
protected override ControlCollection CreateControlCollection()
{
return new CustomControlCollection(this);
}
' Override the CreateControlCollection method to
' write to the Trace object when tracing is enabled
' for the page or application in which this control
' is included.
Protected Overrides Function CreateControlCollection() As ControlCollection
Return New CustomControlCollection(Me)
End Function
L’exemple de code suivant utilise la CreateControlCollection méthode dans un remplacement de contrôle serveur personnalisé de la CreateChildControls méthode. La nouvelle collection est créée, puis remplie avec deux contrôles enfants, firstControl
et secondControl
.
protected override void CreateChildControls()
{
// Creates a new ControlCollection.
this.CreateControlCollection();
// Create child controls.
ChildControl firstControl = new ChildControl();
firstControl.Message = "FirstChildControl";
ChildControl secondControl = new ChildControl();
secondControl.Message = "SecondChildControl";
Controls.Add(firstControl);
Controls.Add(secondControl);
// Prevent child controls from being created again.
ChildControlsCreated = true;
}
Protected Overrides Sub CreateChildControls()
' Creates a new ControlCollection.
Me.CreateControlCollection()
' Create child controls.
Dim firstControl As New ChildControl()
firstControl.Message = "FirstChildControl"
Dim secondControl As New ChildControl()
secondControl.Message = "SecondChildControl"
Controls.Add(firstControl)
Controls.Add(secondControl)
' Prevent child controls from being created again.
ChildControlsCreated = True
End Sub
Remarques
Remplacez cette méthode dans un contrôle serveur personnalisé si vous avez créé un objet de collection dérivé de la ControlCollection classe. Vous pouvez ensuite instancier cette classe de collection dans le remplacement de cette méthode.