Wizard.FinishButtonClick Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit suite à un clic sur le bouton Terminer.
public:
event System::Web::UI::WebControls::WizardNavigationEventHandler ^ FinishButtonClick;
public event System.Web.UI.WebControls.WizardNavigationEventHandler FinishButtonClick;
member this.FinishButtonClick : System.Web.UI.WebControls.WizardNavigationEventHandler
Public Custom Event FinishButtonClick As WizardNavigationEventHandler
Type d'événement
Exemples
L’exemple de code suivant montre comment spécifier un gestionnaire d’événements pour l’événement FinishButtonClick . Lorsque vous cliquez sur le bouton Terminer , un message de confirmation est écrit Label1
dans et la Label1.Visible
propriété est définie true
sur pour que le message s’affiche à l’étape.
<%@ 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 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"
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="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 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"
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>
Remarques
L’événement FinishButtonClick est déclenché lorsque vous cliquez sur le bouton Terminer du Wizard contrôle. Utilisez l’événement FinishButtonClick pour fournir un traitement supplémentaire lorsque vous cliquez sur le bouton Terminer .
Pour plus d’informations sur la façon de gérer les événements, consultez gestion et déclenchement d’événements.