示例#1
0
        private void tOCbinUpdaterToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var form = new TOCUpdater.TOCUpdater();

            OpenMaximized(form);
            taskbar.AddTool(form, Properties.Resources.TOCbinUpdater_64x64);
        }
示例#2
0
        private void savePccToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (pcc == null)
            {
                return;
            }
            SaveFileDialog d = new SaveFileDialog();

            d.Filter = "*.pcc|*.pcc";
            if (d.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                pcc.altSaveToFile(d.FileName, true);
                if (MessageBox.Show("Do you want to update TOC.bin?", "ME3Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
                {
                    TOCUpdater.TOCUpdater tc = new TOCUpdater.TOCUpdater();
                    tc.MdiParent = this.ParentForm;
                    tc.Show();
                    tc.EasyUpdate();
                    tc.Close();
                }
            }
        }
示例#3
0
 private void savePccToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (pcc == null)
         return;
     SaveFileDialog d = new SaveFileDialog();
     d.Filter = "*.pcc|*.pcc";
     if (d.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         pcc.altSaveToFile(d.FileName, true);
         if (MessageBox.Show("Do you want to update TOC.bin?", "ME3Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
         {
             TOCUpdater.TOCUpdater tc = new TOCUpdater.TOCUpdater();
             tc.MdiParent = this.ParentForm;
             tc.Show();
             tc.EasyUpdate();
             tc.Close();
         }
     }
 }
示例#4
0
 private void tOCbinUpdaterToolStripMenuItem_Click(object sender, EventArgs e)
 {
     var form = new TOCUpdater.TOCUpdater();
     OpenMaximized(form);
     taskbar.AddTool(form, Properties.Resources.TOCbinUpdater_64x64);
 }