Wizard.OnFinishButtonClick メソッド
アセンブリ: System.Web (system.web.dll 内)

Dim e As WizardNavigationEventArgs Me.OnFinishButtonClick(e)

FinishButtonClick イベントは、[完了] ボタンがクリックされたときに発生します。
イベントが発生すると、デリゲートを使用してイベント ハンドラが呼び出されます。詳細については、「イベントの発生」を参照してください。
OnFinishButtonClick メソッドを使用すると、デリゲートを結び付けずに、派生クラスでイベントを処理することもできます。派生クラスでイベントを処理する場合は、この手法をお勧めします。
継承時の注意 派生クラスで OnFinishButtonClick メソッドをオーバーライドする場合は、登録されているデリゲートがイベントを受け取ることができるように、基本クラスの OnFinishButtonClick メソッドを呼び出してください。
FinishButtonClick イベントのイベント ハンドラを指定する方法を次のコード例に示します。[完了] ボタンがクリックされると、Label1 に確認メッセージが書き込まれ、Label1.Visible プロパティが true に設定されて、メッセージがステップに表示されます。
<%@ 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 OnFinishButtonClick(ByVal sender As Object, ByVal e As WizardNavigationEventArgs) ' When the Finish button is clicked, write a confirmation ' that the wizard was completed to Label1, and make it visible. Label1.Text = "The wizard has been completed." Label1.Visible = True End Sub </script> <html > <body> <form id="form1" runat="server"> <asp:Wizard id="Wizard1" runat="server" onfinishbuttonclick="OnFinishButtonClick"> <WizardSteps> <asp:WizardStep id="WizardStep1" title="Step 1" runat="server"> </asp:WizardStep> <asp:WizardStep id="WizardStep2" title="Step 2" runat="server"> </asp:WizardStep> </WizardSteps> <HeaderTemplate> <b>FinishButtonClick Example</b> </HeaderTemplate> </asp:Wizard> <asp:Label id="Label1" runat="Server" visible="False" /> </form> </body> </html>
<%@ 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 OnFinishButtonClick(object sender, WizardNavigationEventArgs e) { // When the Finish button is clicked, write a confirmation // that the wizard was completed to Label1, and make it visible. Label1.Text = "The wizard has been completed."; Label1.Visible = true; } </script> <html > <body> <form id="form1" runat="server"> <asp:Wizard id="Wizard1" runat="server" onfinishbuttonclick="OnFinishButtonClick"> <WizardSteps> <asp:WizardStep id="WizardStep1" title="Step 1" runat="server"> </asp:WizardStep> <asp:WizardStep id="WizardStep2" title="Step 2" runat="server"> </asp:WizardStep> </WizardSteps> <HeaderTemplate> <b>FinishButtonClick Example</b> </HeaderTemplate> </asp:Wizard> <asp:Label id="Label1" runat="Server" visible="False" /> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からWizard.OnFinishButtonClick メソッドを検索する場合は、下記のリンクをクリックしてください。

- Wizard.OnFinishButtonClick メソッドのページへのリンク