Condividi tramite


WizardStepBase.Title Proprietà

Definizione

Ottiene o imposta il titolo da utilizzare per un passaggio in un Wizard controllo quando la funzionalità della barra laterale è abilitata.

public:
 virtual property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public virtual string Title { get; set; }
member this.Title : string with get, set
Public Overridable Property Title As String

Valore della proprietà

Titolo da usare per un passaggio in un Wizard controllo quando la funzionalità della barra laterale è abilitata. Il valore predefinito è una stringa vuota ("").

Esempio

Nell'esempio seguente viene illustrato l'utilizzo della Title proprietà per visualizzare un titolo descrittivo per un passaggio nel Wizard controllo . Nell'esempio Step1 la proprietà non Title è impostata, quindi viene visualizzata nel Wizard controllo come "WizardStep1". Step2 ha la proprietà Title impostata, quindi appare come "Passaggio 2".

<%@ 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">

</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" >
        <WizardSteps>
          <asp:WizardStep ID="WizardStep1"
            runat="server">
          </asp:WizardStep>
          <asp:WizardStep ID="WizardStep2" title="Step 2" 
            runat="server">
          </asp:WizardStep>
        </WizardSteps>
        <HeaderTemplate>
          <b>WizardStepBase Title 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">

</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" >
        <WizardSteps>
          <asp:WizardStep ID="WizardStep1"
            runat="server">
          </asp:WizardStep>
          <asp:WizardStep ID="WizardStep2" title="Step 2" 
            runat="server">
          </asp:WizardStep>
        </WizardSteps>
        <HeaderTemplate>
          <b>WizardStepBase Title Example</b>
        </HeaderTemplate>
      </asp:Wizard>
    </form>
  </body>
</html>

Commenti

Utilizzare la Title proprietà per visualizzare un titolo descrittivo per un passaggio in un Wizard controllo quando la funzionalità della barra laterale è abilitata. Se la Title proprietà non è impostata e la funzionalità della barra laterale è abilitata, il valore della ID proprietà viene visualizzato per il pulsante della barra laterale.

Il valore di questa proprietà, se impostato, può essere salvato automaticamente in un file di risorse usando uno strumento di progettazione. Per altre informazioni, vedere LocalizableAttribute Globalizzazione e localizzazione.

Si applica a

Vedi anche