Wizard.StartNavigationTemplate Property

Definition

Gets or sets the template that is used to display the navigation area on the Start step of the Wizard control.

public:
 virtual property System::Web::UI::ITemplate ^ StartNavigationTemplate { System::Web::UI::ITemplate ^ get(); void set(System::Web::UI::ITemplate ^ value); };
[System.ComponentModel.Browsable(false)]
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
[System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard))]
public virtual System.Web.UI.ITemplate StartNavigationTemplate { get; set; }
[<System.ComponentModel.Browsable(false)>]
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
[<System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.Wizard))>]
member this.StartNavigationTemplate : System.Web.UI.ITemplate with get, set
Public Overridable Property StartNavigationTemplate As ITemplate

Property Value

An ITemplate that contains the template for displaying the navigation area on the Start for the Wizard. The default is null.

Attributes

Remarks

Use the StartNavigationTemplate property to specify the custom content that is displayed for the navigation area on the Start step of the Wizard control. Define the content by creating a template that specifies how the navigation area is rendered on the Start step.

The custom content for the template is contained within the StartNavigationTemplate object. You can add custom content to the StartNavigationTemplate object either by using template-editing mode in design view or by defining the StartNavigationTemplate object inline using StartNavigationTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).

Note

The StartNavigationTemplate object that is contained in the StartNavigationTemplate property must contain an IButtonControl control with the CommandName property set to "MoveNext" to enable the navigation feature.

To access a control that is defined in a template programmatically, use the Controls collection of the Wizard object. You can also use the FindControl method of the Wizard object to find the control, if the control has an ID property specified.

Applies to

See also