Wizard.WizardSteps プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コントロールに対して定義されたすべての WizardStepBase オブジェクトを格納するコレクションを取得します。
public:
virtual property System::Web::UI::WebControls::WizardStepCollection ^ WizardSteps { System::Web::UI::WebControls::WizardStepCollection ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
[System.Web.UI.Themeable(false)]
public virtual System.Web.UI.WebControls.WizardStepCollection WizardSteps { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
[<System.Web.UI.Themeable(false)>]
member this.WizardSteps : System.Web.UI.WebControls.WizardStepCollection
Public Overridable ReadOnly Property WizardSteps As WizardStepCollection
プロパティ値
WizardStepCollection に対して定義されたすべての WizardStepBase オブジェクトを表す Wizard。
- 属性
例
次のコード例では、プログラムでコントロールを Wizard 作成する方法と、 メソッドを使用してオブジェクトを Add コレクションに追加 WizardStepBase する方法を WizardSteps 示します。
<%@ 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>
<%@ Page Language="VB" %>
<!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.
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
Dim WizardControl As New Wizard()
' Create some steps for the wizard and add them to
' the Wizard control.
For i As Integer = 0 To 5
Dim newStep As WizardStepBase = New WizardStep()
newStep.ID = "Step" + (i + 1).ToString()
WizardControl.WizardSteps.Add(newStep)
Next
' Display the wizard on the page.
PlaceHolder1.Controls.Add(WizardControl)
End Sub
</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>
注釈
プロパティは WizardSteps 、コントロールを構成するオブジェクトの WizardStepBase コレクションを Wizard 返します。 コレクションを WizardSteps 使用して、コントロールに WizardStepBase 含まれるオブジェクトにプログラムで Wizard アクセスできます。 、、AddRemoveClear、および Insert の各メソッドを使用して、コレクション内のWizardStepBaseオブジェクトをプログラムで操作します。
注意
Microsoft Visual Studio 2005 を使用している場合は、 がソース ビューに保持されることに ActiveStepIndex 注意してください。 サイドバー ボタンをWizardStepsクリックしてデザイン ビューのプロパティを変更し、ページを実行すると、 が別のステップを指している可能性があるためActiveStepIndex、コントロールのWizard
最初のステップが表示されない可能性があります。
コントロールに複数WizardStepCollectionのWizardコレクションが含まれている場合、コレクションはマージされます。
このプロパティは、テーマまたはスタイル シート テーマによって設定することはできません。 詳細については、「テーマとスキンの ASP.NET」を参照してくださいThemeableAttribute。
適用対象
こちらもご覧ください
.NET