79569412

Date: 2025-04-11 17:22:57
Score: 1
Natty:
Report link

the only solution I've found even for TableLayoutPanel scenario, is to just use SelectedIndexChanged, u just refocus to another component e.g. a dummy one, or any other on your form.
e.g.

private void fpsComboBoxPreview_SelectedIndexChanged(object sender, EventArgs e)
{
    button7.Focus();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vlad Pocris