public void SetControlState(WizardControl control, bool enabled) { this.controlState[control.ToString()] = enabled; }
public bool GetControlState(WizardControl control) { return(this.controlState[control.ToString()]); }
/// <summary> /// Gets the tag for a control. /// </summary> /// <param name="control">The control to get the tag for.</param> /// <returns>The tag for the control.</returns> private static string GetControlTag(WizardControl control) { string tag = control.ToString(); return(tag); }