(object sender, EventArgs e)
| 44 | } |
| 45 | |
| 46 | private void Dialog_InputBox_Load(object sender, EventArgs e) |
| 47 | { |
| 48 | this.Text = _Caption; |
| 49 | label1.Text = _TipText; |
| 50 | textBox1.Text = _Default; |
| 51 | textBox1.SelectionStart = 0; |
| 52 | textBox1.SelectionLength = textBox1.Text.Length; |
| 53 | |
| 54 | textBox1.Focus(); |
| 55 | } |
| 56 | |
| 57 | private void button1_Click(object sender, EventArgs e) |
| 58 | { |
nothing calls this directly
no outgoing calls
no test coverage detected