Different Panels' MouseEnter and MouseLeave conflict on Event Order
问题 Here, I have two side-by-side panel the first_pnl and second_pnl , the second panel is not visible by default. Initial thoughts of what I need: If my cursor is over the the first one ( MouseEnter ) It's BackColor would change to Black Second panel would be visible If my cursor leaves first one ( MouseLeave ) It's BackColor would change back to Gray Second panel would not be visible Which is simple as: Private Sub PanelMouseEnter(sender As Object, e As EventArgs) _ Handles first_pnl.MouseEnter