39 references to WizardStepType
System.Web (39)
UI\WebControls\CompleteWizardStep.cs (2)
41
public override
WizardStepType
StepType {
43
return
WizardStepType
.Complete;
UI\WebControls\CreateUserWizardStep.cs (1)
82
public override
WizardStepType
StepType {
UI\WebControls\Wizard.cs (30)
1427
if (GetStepType(step) ==
WizardStepType
.Complete &&
1579
private
WizardStepType
GetStepType(int index) {
1585
private
WizardStepType
GetStepType(WizardStepBase step) {
1591
public
WizardStepType
GetStepType(WizardStepBase wizardStep, int index) {
1592
if (wizardStep.StepType ==
WizardStepType
.Auto) {
1597
WizardSteps[index + 1].StepType ==
WizardStepType
.Complete)) {
1598
return
WizardStepType
.Finish;
1603
return
WizardStepType
.Start;
1608
return
WizardStepType
.Finish;
1611
return
WizardStepType
.Step;
1749
WizardStepType
stepType =
WizardStepType
.Auto;
1771
if (stepType !=
WizardStepType
.Start && stepType !=
WizardStepType
.Step) {
1784
if (stepType !=
WizardStepType
.Step && stepType !=
WizardStepType
.Finish) {
1800
if (stepType !=
WizardStepType
.Finish) {
2153
WizardStepType
renderType =
WizardStepType
.Start;
2163
renderType !=
WizardStepType
.Finish || Owner.ActiveStepIndex != 0 || Owner.ActiveStep.StepType !=
WizardStepType
.Auto;
2290
protected virtual
WizardStepType
SetActiveTemplates() {
2291
WizardStepType
type = Owner.GetStepType(Owner.ActiveStepIndex);
2293
_startNavigationTemplateContainer.Visible = (type ==
WizardStepType
.Start);
2294
_stepNavigationTemplateContainer.Visible = (type ==
WizardStepType
.Step);
2295
_finishNavigationTemplateContainer.Visible = (type ==
WizardStepType
.Finish);
2298
if (type ==
WizardStepType
.Complete) {
2737
protected override
WizardStepType
SetActiveTemplates() {
2738
WizardStepType
type = base.SetActiveTemplates();
2740
if (type !=
WizardStepType
.Complete) {
UI\WebControls\WizardStepBase.cs (6)
132
DefaultValue(
WizardStepType
.Auto),
135
public virtual
WizardStepType
StepType {
138
return o == null?
WizardStepType
.Auto : (
WizardStepType
)o;
141
if (value <
WizardStepType
.Auto || value >
WizardStepType
.Step) {