public FormDump() { InitializeComponent(); StartPosition = FormStartPosition.Manual; Location = new Point(main.Location.X + 130, main.Location.Y + 150); main.SetAllControlsFont(Controls); }
public FormOptions() { InitializeComponent(); StartPosition = FormStartPosition.Manual; Location = new Point(main.Location.X + 190, main.Location.Y + 90); main.SetAllControlsFont(Controls); updateChkBox.Checked = FormRegistry.CheckForUpdate; winPosCheckBox.Checked = FormRegistry.RememberWindowPosition; autoSetDirCheck.Checked = FormRegistry.AutoSetDir; extBinaryChkBox.Checked = FormRegistry.ExtBinaryChkBox; }
public FormSettings() { InitializeComponent(); StartPosition = FormStartPosition.Manual; Location = new Point(main.Location.X + 20, main.Location.Y + 60); main.SetAllControlsFont(Controls); updateChkBox.Checked = Properties.Settings.Default.CheckForUpdate; winPosCheckBox.Checked = Properties.Settings.Default.RememberWindowPosition; autoSetDirCheck.Checked = Properties.Settings.Default.AutoSetDir; extBinaryChkBox.Checked = Properties.Settings.Default.ExtBinaryChkBox; extDatChkBox.Checked = Properties.Settings.Default.ExtDatChkBox; script1ChkBox.Checked = Properties.Settings.Default.ghidra; script2ChkBox.Checked = Properties.Settings.Default.ghidra_with_struct; script3ChkBox.Checked = Properties.Settings.Default.ida; script4ChkBox.Checked = Properties.Settings.Default.ida_py3; script5ChkBox.Checked = Properties.Settings.Default.ida_with_struct; script6ChkBox.Checked = Properties.Settings.Default.ida_with_struct_py3; }