Mouse Hover event not firing over a panel in c#
问题 i am trying to write a code on Mouse_Hover event of a panel in my winform app using c#. This is my code .. private void viewscreen_MouseHover(object sender, EventArgs e) { statuspnl.Enabled = true; statuspnl.Visible = true; } but the problem is the event is not firing when i am taking the mouse over the viewscreen panel // viewscreen // this.viewscreen.BackColor = System.Drawing.SystemColors.ActiveCaptionText; this.viewscreen.Controls.Add(this.statuspnl); this.viewscreen.Location = new System