Guest User

Untitled

a guest
Jun 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. foreach (ComboBox cb in Controls)
  2. {
  3. cb.Resize += (sender, e) => {
  4. if (!cb.Focused)
  5. comboBox.SelectionLength = 0;
  6. };
  7. }
Add Comment
Please, Sign In to add comment