示例#1
0
 private void finishButton_Click(object sender, EventArgs e)
 {
     try
     {
         string       message      = CurrentLanguageID == 1031 ? "Das Projekt wurde erstellt." : "The project is complete.";
         string       resultFolder = ProjectConverter.ConvertProjectTemplate(_listControls);
         FinishDialog dialog       = new FinishDialog(resultFolder);
         dialog.ShowDialog(this);
         Reset();
     }
     catch (Exception exception)
     {
         ErrorForm.ShowError(this, exception);
     }
 }
示例#2
0
        private void finishButton_Click(object sender, EventArgs e)
        {
            try
            {
                string message = CurrentLanguageID == 1031 ? "Das Projekt wurde erstellt." : "The project is complete.";                
                string resultFolder = ProjectConverter.ConvertProjectTemplate(_listControls);
                FinishDialog dialog = new FinishDialog(resultFolder);
                dialog.ShowDialog(this);
                //MessageBox.Show(this, message, "Developer Toolbox", MessageBoxButtons.OK, MessageBoxIcon.Information);              
//                System.Diagnostics.Process.Start(resultFolder);
                Reset();
            }
            catch (Exception exception)
            {
                ErrorForm.ShowError(exception);
            }
        }
 private void finishButton_Click(object sender, EventArgs e)
 {
     try
     {
         string message = CurrentLanguageID == 1031 ? "Das Projekt wurde erstellt." : "The project is complete.";                
         string resultFolder = ProjectConverter.ConvertProjectTemplate(_listControls);
         FinishDialog dialog = new FinishDialog(resultFolder);
         dialog.ShowDialog(this);
         Reset();
     }
     catch (Exception exception)
     {
         ErrorForm.ShowError(this, exception);
     }
 }