(object sender, EventArgs e)
| 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 | { |
nothing calls this directly
no outgoing calls
no test coverage detected