Example #1
0
      } // end SummaryPanel constructor

      /// <summary>
      /// Constructs a new SummaryPanel object.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      public SummaryPanel(GraySystem.UI.Forms.Wizard wizParent) : base(wizParent)
      {
      } // end SummaryPanel constructor
Example #2
0
      } // end FinishedPanel constructor

      /// <summary>
      /// Constructs a new FinishedPanel object.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      public FinishedPanel(GraySystem.UI.Forms.Wizard wizParent) : base(wizParent)
      {
         _sResultHeading = "The task ";
      } // end FinishedPanel constructor
Example #3
0
      } // end ProgressPanel constructor

      /// <summary>
      /// Constructs a new ProgressPanel object.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      public ProgressPanel(GraySystem.UI.Forms.Wizard wizParent) : base(wizParent)
      {
         SkipOnBack = true;
      } // end ProgressPanel constructor
Example #4
0
      } // end FinishedPanel constructor

      /// <summary>
      /// Constructs a new FinishedPanel object and sets the heading used for the process's
      /// result.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      /// <param name="sResultHeading">Sets the heading used for the Result.  This should
      /// be something identifying the task being executed.  Fill in the following:
      /// "___________ was Successful!"  If nothing is specified, the default will be used,
      /// which is "The task".</param>
      public FinishedPanel(GraySystem.UI.Forms.Wizard wizParent, string sResultHeading) : base(wizParent)
      {
         _sResultHeading = sResultHeading + " ";
      } // end FinishedPanel constructor
      } // end WizardControlPanel constructor

      /// <summary>
      /// Constructs a new WizardControlPanel object.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      protected WizardControlPanel(GraySystem.UI.Forms.Wizard wizParent)
      {
         _wizParent = wizParent;
      } // end WizardControlPanel constructor
      } // end EnvironmentPanel constructor

      /// <summary>
      /// Constructs a new EnvironmentPanel object and sets the heading used for the panel's summary.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      /// <param name="sSummaryHeading">Sets the heading used for the Summary.  This should be something
      /// to identify for what the environment(s) is(are) selected.  An example would be "RFSmart Version 3
      /// Environment(s) for which the data will be exported".  If nothing is specified, the default is
      /// used, which is "RFSmart Environments".</param>
      public EnvironmentPanel(GraySystem.UI.Forms.Wizard wizParent, string sSummaryHeading) : base(wizParent)
      {
         _sSummaryHeading = sSummaryHeading;
      } // end EnvironmentPanel constructor
      } // end EnvironmentPanel constructor

      /// <summary>
      /// Constructs a new EnvironmentPanel object.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      public EnvironmentPanel(GraySystem.UI.Forms.Wizard wizParent) : base(wizParent)
      {
         _sSummaryHeading = "RFSmart Environments";
      } // end EnvironmentPanel constructor
Example #8
0
      } // end IntroPanel constructor

      /// <summary>
      /// Constructs a new IntroPanel object.
      /// </summary>
      /// <param name="wizParent">Parent wizard of the control panel.</param>
      public IntroPanel(GraySystem.UI.Forms.Wizard wizParent) : base(wizParent)
      {
      } // end IntroPanel constructor