Control.CreateControlCollection Metoda

Definicja

Tworzy nowy ControlCollection obiekt do przechowywania kontrolek podrzędnych (literału i serwera) kontrolki serwera.

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

Zwraca

ControlCollection Obiekt zawierający kontrolki podrzędnego serwera kontroli bieżącego serwera.

Przykłady

Poniższy przykład kodu zastępuje metodę CreateControlCollection w celu utworzenia wystąpienia CustomControlCollection klasy, która dziedziczy z ControlCollection klasy.

// 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

Poniższy przykład kodu używa CreateControlCollection metody w niestandardowym przesłonięcie CreateChildControls kontroli serwera. Nowa kolekcja zostanie utworzona, a następnie wypełniona dwoma kontrolkami firstControl podrzędnymi i 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


Uwagi

Zastąp tę metodę w niestandardowej kontrolce serwera, jeśli utworzono obiekt kolekcji, który pochodzi z ControlCollection klasy. Następnie można utworzyć wystąpienie tej klasy kolekcji w zastąpieniu tej metody.

Dotyczy

Zobacz też