Exemplo n.º 1
0
        private void labelModelsDir_Click(object sender, EventArgs e)
        {
            FormSetModelsDir f = new FormSetModelsDir();

            f.ShowDialog();
            ShowModels();
        }
Exemplo n.º 2
0
        private void menuItemLoadInputs_Click(object sender, EventArgs e)
        {
            Util.l(Util.curModelDir);
            if (Util.curModelDir == null)
            {
                FormSetModelsDir dlg = new FormSetModelsDir();
                dlg.ShowDialog();
            }
            LoadInputs();

            //  backgroundWorkerEnumerationModels.RunWorkerAsync(); //INPUT_DATA
        }
Exemplo n.º 3
0
        public LoadData()
        {
            FormSetModelsDir dlg = new FormSetModelsDir("Chcete přepsat data vybranou adresářovou strukturou, maskami a stupnicemi?");

            dlg.ShowDialog();

            if (Util.curModelDir == null)
            {
                return;
            }

            Util.ShowLoading("Načítání modelů, ORP masek a spektra...");
            ScanDir();
            Util.HideLoading();
        }