Exemplo n.º 1
0
        /// <summary>
        /// Summary of what is included on the settings page - inputting child's name into the textbox,
        /// indicating intervals (seconds timer) and determining input option for the controls of the program
        /// </summary>
        public StartPage()
        {
            InitializeComponent();

            BackendLogic.SetupApp();

            StuffAndThingsEnablement(false);
        }
        public ModelsPage()
        {
            InitializeComponent();

            if (BackendLogic.inputOption == 1)
            {
                timerSwitch.Interval = BackendLogic.secondsTimer * 1000;
                timerSwitch.Enabled  = true;
            }

            path = "\\Categories\\Category Models\\" + BackendLogic.arrayOfOutputInfo[0];
            currentFolderStructure = BackendLogic.CountFilesModelsFolders(path);

            ModelsRefresh();
        }