Exemple #1
0
 void AddStepWithMethod(MethodInfoVM miVM)
 {
     if (seqFileVM == null)
     {
         CreateSeqFileCmd.Execute(null);
     }
 }
Exemple #2
0
        void AddXTT()
        {
            var openFileDialog = new Microsoft.Win32.OpenFileDialog()
            {
                Filter = "Xtt Files (*.xtt)|*.xtt"
            };
            var    result  = openFileDialog.ShowDialog();
            string xttPath = string.Empty;

            if (result == true)
            {
                xttPath = openFileDialog.FileName;
            }
            else
            {
                return;
            }

            if (SeqFileVM == null)
            {
                CreateSeqFileCmd.Execute(null);
            }
            SeqFileVM.AddXttFile(xttPath);
        }