Пример #1
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Checked = !optionsPage.UseCustomGdb;
     customGdb.Checked  = optionsPage.UseCustomGdb;
     customGdbPath.Text = optionsPage.CustomGdbPath;
     extraArgs.Text     = optionsPage.GdbExtraArguments;
 }
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text = optionsPage.ExtraArgs;
 }
Пример #3
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked  = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text     = optionsPage.ExtraArgs;
 }
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Text = String.Format(customGdbTextFormat, EnvironmentPath.FindExePath("gdb") ?? "<none>");
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text = optionsPage.ExtraArgs;
 }
Пример #5
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Text    = String.Format(customGdbTextFormat, EnvironmentPath.FindExePath("gdb") ?? "<none>");
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked  = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text     = optionsPage.ExtraArgs;
 }
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.UseCustomGdbPath = customGdb.Checked;
     optionsPage.DebuggerLocation = customGdbPath.Text;
     optionsPage.ExtraArgs = extraArgs.Text;
 }
 public DebuggingOptionsPageControl(DebuggingOptionsPage options)
     : this()
 {
     LoadSettings(options);
 }
Пример #8
0
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.UseCustomGdb      = customGdb.Checked;
     optionsPage.CustomGdbPath     = customGdbPath.Text;
     optionsPage.GdbExtraArguments = extraArgs.Text;
 }
Пример #9
0
 public DebuggingOptionsPageControl(DebuggingOptionsPage options)
     : this()
 {
     LoadSettings(options);
 }
Пример #10
0
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.UseCustomGdbPath = customGdb.Checked;
     optionsPage.DebuggerLocation = customGdbPath.Text;
     optionsPage.ExtraArgs        = extraArgs.Text;
 }
Пример #11
0
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.DebuggerLocation = debuggerLocation.Text;
     optionsPage.ExtraArgs        = extraArgs.Text;
 }
Пример #12
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     debuggerLocation.Text = optionsPage.DebuggerLocation;
     extraArgs.Text        = optionsPage.ExtraArgs;
 }
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     debuggerLocation.Text = optionsPage.DebuggerLocation;
     extraArgs.Text = optionsPage.ExtraArgs;
 }
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.DebuggerLocation = debuggerLocation.Text;
     optionsPage.ExtraArgs = extraArgs.Text;
 }