Beispiel #1
0
 private void onClickSave(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     Animdata.Save(AppDomain.CurrentDomain.SetupInformation.ApplicationBase);
     Cursor.Current = Cursors.Default;
     MessageBox.Show(String.Format("Saved to {0}", AppDomain.CurrentDomain.SetupInformation.ApplicationBase),
                     "Save",
                     MessageBoxButtons.OK,
                     MessageBoxIcon.Information,
                     MessageBoxDefaultButton.Button1);
     Options.ChangedUltimaClass["Animdata"] = false;
 }
Beispiel #2
0
 private void onClickSave(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     Animdata.Save(FiddlerControls.Options.OutputPath);
     Cursor.Current = Cursors.Default;
     MessageBox.Show(String.Format("Saved to {0}", FiddlerControls.Options.OutputPath),
                     "Save",
                     MessageBoxButtons.OK,
                     MessageBoxIcon.Information,
                     MessageBoxDefaultButton.Button1);
     Options.ChangedUltimaClass["Animdata"] = false;
 }