コード例 #1
0
 public void SetControlState(WizardControl control, bool enabled)
 {
     this.controlState[control.ToString()] = enabled;
 }
コード例 #2
0
 public bool GetControlState(WizardControl control)
 {
     return(this.controlState[control.ToString()]);
 }
コード例 #3
0
        /// <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);
        }