public override void CreateScreens()
        {
            if (Thread.CurrentThread.GetApartmentState() != ApartmentState.STA)
            {
                return;
            }

            Screens    = new ContentItem[2];
            Screens[0] = new Controls.ContentItems.SetupDatabase();
            Screens[1] = new Controls.ContentItems.EditModel();
        }
Beispiel #2
0
 public SetupDatabase()
 {
     CurrentSetupDatabase = this;
     InitializeComponent();
     BackColor = Slyce.Common.Colors.BackgroundColor;
     if (Slyce.Common.Utility.InDesignMode) { return; }
     HasPrev = true;
     HasNext = true;
     HelpPage = "Workbench_Screen_Database_Details.htm";
     Title = "Database Details";
     PageDescription = "Specify what databases you want to use, and what prefixes should be stripped.";
 }
Beispiel #3
0
 public SetupDatabase()
 {
     CurrentSetupDatabase = this;
     InitializeComponent();
     BackColor = Slyce.Common.Colors.BackgroundColor;
     if (Slyce.Common.Utility.InDesignMode)
     {
         return;
     }
     HasPrev         = true;
     HasNext         = true;
     HelpPage        = "Workbench_Screen_Database_Details.htm";
     Title           = "Database Details";
     PageDescription = "Specify what databases you want to use, and what prefixes should be stripped.";
 }
Beispiel #4
0
        public override void CreateScreens()
        {
            if (Thread.CurrentThread.GetApartmentState() != ApartmentState.STA) return;

            Screens = new ContentItem[2];
            Screens[0] = new Controls.ContentItems.SetupDatabase();
            Screens[1] = new Controls.ContentItems.EditModel();
        }