Wizard.OnNextButtonClick(WizardNavigationEventArgs) メソッド
定義
NextButtonClick イベントを発生させます。Raises the NextButtonClick event.
protected:
virtual void OnNextButtonClick(System::Web::UI::WebControls::WizardNavigationEventArgs ^ e);
protected virtual void OnNextButtonClick (System.Web.UI.WebControls.WizardNavigationEventArgs e);
abstract member OnNextButtonClick : System.Web.UI.WebControls.WizardNavigationEventArgs -> unit
override this.OnNextButtonClick : System.Web.UI.WebControls.WizardNavigationEventArgs -> unit
Protected Overridable Sub OnNextButtonClick (e As WizardNavigationEventArgs)
パラメーター
イベント データを格納している WizardNavigationEventArgs。A WizardNavigationEventArgs containing the event data.
例
イベントのイベントハンドラーを指定する方法を次のコード例に示し NextButtonClick ます。The following code example demonstrates how to specify an event handler for the NextButtonClick event. [次へ] ボタンがクリックされるたびに、 BorderWidth コントロールのプロパティは、 Wizard クラスによって測定される1ピクセルずつ増加し Unit ます。Each time the Next button is clicked, the BorderWidth property for the Wizard control is increased by 1 pixel, as measured by the Unit class.
<%@ 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">
void OnNextButtonClick(object sender, WizardNavigationEventArgs e)
{
// When the Next button is clicked, increase the
// Wizard1.BorderWidth by 1.
Wizard1.BorderWidth = Unit.Pixel((int)(Wizard1.BorderWidth.Value + 1));
}
void OnPreviousButtonClick(object sender, WizardNavigationEventArgs e)
{
// When the Previous button is clicked, decrease the
// Wizard1.BorderWidth by 1.
Wizard1.BorderWidth = Unit.Pixel((int)(Wizard1.BorderWidth.Value - 1));
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Wizard id="Wizard1"
runat="server"
onnextbuttonclick="OnNextButtonClick"
onpreviousbuttonclick="OnPreviousButtonClick"
borderstyle="Solid"
bordercolor="#3300ff"
borderwidth="1">
<WizardSteps>
<asp:WizardStep id="WizardStep1"
runat="server"
title="Step 1">
</asp:WizardStep>
<asp:WizardStep id="WizardStep2"
runat="server"
title="Step 2">
</asp:WizardStep>
<asp:WizardStep id="WizardStep3"
runat="server"
title="Step 3">
</asp:WizardStep>
<asp:WizardStep id="WizardStep4"
runat="server"
title="Step 4">
</asp:WizardStep>
<asp:WizardStep id="WizardStep5"
runat="server"
title="Step 5">
</asp:WizardStep>
<asp:WizardStep id="WizardStep6"
runat="server"
title="Step 6">
</asp:WizardStep>
<asp:WizardStep id="WizardStep7"
runat="server"
title="Step 7">
</asp:WizardStep>
</WizardSteps>
<HeaderTemplate>
<b>NextButtonClick and PreviousButtonClick Example</b>
</HeaderTemplate>
</asp:Wizard>
</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">
Sub OnNextButtonClick(ByVal sender As Object, ByVal e As WizardNavigationEventArgs)
' When the Next button is clicked, increase the
' Wizard1.BorderWidth by 1.
Wizard1.BorderWidth = Unit.Pixel(CInt(Wizard1.BorderWidth.Value + 1))
End Sub
Sub OnPreviousButtonClick(ByVal sender As Object, ByVal e As WizardNavigationEventArgs)
' When the Previous button is clicked, decrease the
' Wizard1.BorderWidth by 1.
Wizard1.BorderWidth = Unit.Pixel(CInt(Wizard1.BorderWidth.Value - 1))
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Wizard id="Wizard1"
runat="server"
onnextbuttonclick="OnNextButtonClick"
onpreviousbuttonclick="OnPreviousButtonClick"
borderstyle="Solid"
bordercolor="#3300ff"
borderwidth="1">
<WizardSteps>
<asp:WizardStep id="WizardStep1"
runat="server"
title="Step 1">
</asp:WizardStep>
<asp:WizardStep id="WizardStep2"
runat="server"
title="Step 2">
</asp:WizardStep>
<asp:WizardStep id="WizardStep3"
runat="server"
title="Step 3">
</asp:WizardStep>
<asp:WizardStep id="WizardStep4"
runat="server"
title="Step 4">
</asp:WizardStep>
<asp:WizardStep id="WizardStep5"
runat="server"
title="Step 5">
</asp:WizardStep>
<asp:WizardStep id="WizardStep6"
runat="server"
title="Step 6">
</asp:WizardStep>
<asp:WizardStep id="WizardStep7"
runat="server"
title="Step 7">
</asp:WizardStep>
</WizardSteps>
<HeaderTemplate>
<b>NextButtonClick and PreviousButtonClick Example</b>
</HeaderTemplate>
</asp:Wizard>
</form>
</body>
</html>
注釈
NextButtonClickイベントは、[次へ] ボタンがクリックされたときに発生します。The NextButtonClick event is raised when the Next button is clicked.
イベントを発生させると、イベント ハンドラーがデリゲートから呼び出されます。Raising an event invokes the event handler through a delegate. 詳細については、処理とイベントの発生 を参照してください。For more information, see Handling and Raising Events.
OnNextButtonClick メソッドを使用すると、デリゲートを結び付けずに、派生クラスでイベントを処理することもできます。The OnNextButtonClick method also allows derived classes to handle the event without attaching a delegate. 派生クラスでイベントを処理する場合は、この手法をお勧めします。This is the preferred technique for handling the event in a derived class.
注意 (継承者)
派生クラスのメソッドをオーバーライドする場合 OnNextButtonClick(WizardNavigationEventArgs) は、登録されて OnNextButtonClick(WizardNavigationEventArgs) いるデリゲートがイベントを受け取るように、基本クラスのメソッドを呼び出す必要があります。When overriding the OnNextButtonClick(WizardNavigationEventArgs) method in a derived class, be sure to call the OnNextButtonClick(WizardNavigationEventArgs) method of the base class so that registered delegates receive the event.