private void tOCbinUpdaterToolStripMenuItem_Click(object sender, EventArgs e) { var form = new TOCUpdater.TOCUpdater(); OpenMaximized(form); taskbar.AddTool(form, Properties.Resources.TOCbinUpdater_64x64); }
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(); } } }
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(); } } }