Kyle
Kyle

Reputation: 3042

"Select all" in all textboxes

private void textBox1_MouseClick(object sender, MouseEventArgs e)
        {
            textBox1.SelectAll();
        }

This works but I have 6 textBoxes. Is there any easier way instead of adding event listeners for each and every textbox? Or a shorthand or something?

Thanks.

Upvotes: 0

Views: 587

Answers (1)

Duncan Watts
Duncan Watts

Reputation: 1331

Add the same event handler to each and have ((TextBox)sender).SelectAll() to ensure the one that is clicked on is highlighted.

If you're looking for something more generic create a derived class of TextBox containing the same.

Upvotes: 3

Related Questions