WizardStepCollection.Add(WizardStepBase) Yöntem

Tanım

Belirtilen WizardStepBasetüretilmiş nesneyi koleksiyonun sonuna ekler.

C#
public void Add(System.Web.UI.WebControls.WizardStepBase wizardStep);

Parametreler

wizardStep
WizardStepBase

WizardStepBaseKoleksiyona eklenecek WizardStepCollection türetilmiş nesne.

Özel durumlar

geçirilen WizardStepBasetüretilmiş nesne: null.

Örnekler

Aşağıdaki kod örneğinde program aracılığıyla denetim Wizard oluşturma ve yöntemi kullanılarak Add koleksiyona türetilmiş WizardStep nesneler ekleme WizardStepBasegösterilmektedirWizardSteps. Örnekte, denetimin WizardSteps özelliğinin Wizard sınıfın WizardStepCollection bir örneği olduğunu unutmayın.

ASP.NET (C#)
<%@ page language="C#"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

  // Programmatically create a Wizard control and dynamically
  // add WizardStep objects to it.    
  
  void Page_Load(object sender, EventArgs e) 
  {
    Wizard WizardControl = new Wizard();
      
    // Create some steps for the wizard and add them
    // to the Wizard control.
    for (int i = 0; i <= 5; i++)
    {
      WizardStepBase newStep = new WizardStep();
      newStep.ID = "Step" + (i + 1).ToString();
      WizardControl.WizardSteps.Add(newStep);
    }
    
    // Display the wizard on the page.
    PlaceHolder1.Controls.Add(WizardControl);
  }
  
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
  <head runat="server">
    <title>WizardSteps Example</title>
</head>
<body>
    <form id="Form1" runat="server">
      <h3>WizardSteps Example</h3>
      <asp:PlaceHolder id="PlaceHolder1" 
        runat="server" />
    </form>
  </body>
</html>

Açıklamalar

Add yöntemi- türetilmiş nesnesini koleksiyonun WizardStepCollection sonuna eklerWizardStepBase. Belirli bir WizardStepBasedizin konumundaki koleksiyona -derived nesnesi eklemek için yöntemini kullanın AddAt .

Şunlara uygulanır

Ürün Sürümler
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Ayrıca bkz.