//--------------------------------------------------------------------------------
 /// <summary>
 /// Constructor that allows the programmer to specify the page type. In
 /// the case of the sample app, we use this constructor for this oject,
 /// and specify it as the start page.
 /// </summary>
 /// <param name="parent">The parent WizardFormBase-derived form</param>
 /// <param name="pageType">The type of page this object represents (start, intermediate, or stop)</param>
 public WizardPage41(WizardFormBase parent, WizardPageType pageType, CmWinServiceAPI db)
     : base(parent, pageType)
 {
     this.db = db;
     InitPage();
     twitterService = new TwitterService(_consumerKey, _consumerSecret);
 }
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Constructor that allows the programmer to specify the page type. In
 /// the case of the sample app, we use this constructor for this oject,
 /// and specify it as the start page.
 /// </summary>
 /// <param name="parent">The parent WizardFormBase-derived form</param>
 /// <param name="pageType">The type of page this object represents (start, intermediate, or stop)</param>
 public WizardPage40(WizardFormBase parent, WizardPageType pageType, CmWinServiceAPI db)
     : base(parent, pageType)
 {
     this.db = db;
     InitPage();
     _fb       = new FacebookClient();
     _loginUrl = GenerateLoginUrl(AppId, ExtendedPermissions);
 }
Exemple #3
0
 public WizardPagePayment(WizardFormBase parent, WizardPageType pageType)
     : base(parent, pageType)
 {
     InitPage();
 }
Exemple #4
0
 public WizardPagePayment(WizardFormBase parent)
     : base(parent)
 {
     InitPage();
 }
 public WizardPageEditor(WizardFormBase parent, WizardPageType pageType)
     : base(parent, pageType)
 {
     InitPage();
 }
        //====================================

        public WizardPageEditor(WizardFormBase parent)
            : base(parent)
        {
            InitPage();
        }
Exemple #7
0
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Constructor that allows the programmer to specify the page type. In
 /// the case of the sample app, we use this constructor for this oject,
 /// and specify it as the start page.
 /// </summary>
 /// <param name="parent">The parent WizardFormBase-derived form</param>
 /// <param name="pageType">The type of page this object represents (start, intermediate, or stop)</param>
 public WizardPage5(WizardFormBase parent, WizardPageType pageType, CmWinServiceAPI db)
     : base(parent, pageType)
 {
     this.db = db;
     InitPage();
 }
Exemple #8
0
 public WizardPageCamera(WizardFormBase parent, WizardPageType pageType)
     : base(parent, pageType)
 {
     InitPage();
 }
        //--------------------------------------------------------------------------------
        /// <summary>
        /// Constructor that assumes the page type is "intermediate"
        /// </summary>
        /// <param name="parent">The parent WizardFormBase-derived form</param>
        ///


        public WizardPageSourceSelector(WizardFormBase parent)
            : base(parent)
        {
            InitPage();
        }
 public WizardPageUSBBrowser(WizardFormBase parent, WizardPageType pageType)
     : base(parent, pageType)
 {
     InitPage();
 }
 public WizardPageUSBBrowser(WizardFormBase parent)
     : base(parent)
 {
     InitPage();
 }
Exemple #12
0
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Constructor that assumes the page type is "intermediate"
 /// </summary>
 /// <param name="parent">The parent WizardFormBase-derived form</param>
 public WizardPage1(WizardFormBase parent, CmWinServiceAPI db)
     : base(parent)
 {
     this.db = db;
     InitPage();
 }
 public WizardPageScanner(WizardFormBase parent)
     : base(parent)
 {
     InitPage();
 }
 public WizardPagePrintSummary(WizardFormBase parent)
     : base(parent)
 {
     InitPage();
 }
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Constructor that allows the programmer to specify the page type. In
 /// the case of the sample app, we use this constructor for this object,
 /// and specify it as the start page.
 /// </summary>
 /// <param name="parent">The parent WizardFormBase-derived form</param>
 /// <param name="pageType">The type of page this object represents (start, intermediate, or stop)</param>
 public WizardPageSourceSelector(WizardFormBase parent, WizardPageType pageType)
     : base(parent, pageType)
 {
     InitPage();
 }
 public WizardPagePrintSummary(WizardFormBase parent, WizardPageType pageType)
     : base(parent, pageType)
 {
     InitPage();
 }
Exemple #17
0
 public WizardPageCamera(WizardFormBase parent)
     : base(parent)
 {
     InitPage();
 }