(object sender, KeyPressEventArgs e)
| 60 | } |
| 61 | |
| 62 | private void textBox1_KeyPress(object sender, KeyPressEventArgs e) |
| 63 | { |
| 64 | if (e.KeyChar == '\r') |
| 65 | { |
| 66 | e.Handled = true; |
| 67 | _InputText = textBox1.Text; |
| 68 | DialogResult = DialogResult.OK; |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | } |
nothing calls this directly
no outgoing calls
no test coverage detected