MCPcopy Create free account
hub / github.com/NodeRT/NodeRT / btnOutputDirBrowse_Click

Method btnOutputDirBrowse_Click

src/NodeRTUI/MainForm.cs:279–289  ·  view source on GitHub ↗
(object sender, EventArgs e)

Source from the content-addressed store, hash-verified

277 }
278
279 private void btnOutputDirBrowse_Click(object sender, EventArgs e)
280 {
281 outputDirBrowserDialog.SelectedPath = txtOutputDirectory.Text;
282 var result = outputDirBrowserDialog.ShowDialog();
283 if (result != System.Windows.Forms.DialogResult.Cancel)
284 {
285 Properties.Settings.Default.OutputDirPath = outputDirBrowserDialog.SelectedPath;
286 Properties.Settings.Default.Save();
287 txtOutputDirectory.Text = outputDirBrowserDialog.SelectedPath;
288 }
289 }
290
291 private void chkDefGen_CheckedChanged(object sender, EventArgs e)
292 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected