Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FormsPlot: MouseEnter and MouseLeave events not getting fired #3819

Open
CD-SailingPerf opened this issue May 10, 2024 · 0 comments
Open

FormsPlot: MouseEnter and MouseLeave events not getting fired #3819

CD-SailingPerf opened this issue May 10, 2024 · 0 comments

Comments

@CD-SailingPerf
Copy link

CD-SailingPerf commented May 10, 2024

Issue:
MouseEnter and MouseLeave events not getting fired.
This may have worked at some point according to this issue, but it now seems broken.
#999

ScottPlot Version: 5.0.34

Code Sample:

            ScottPlot.WinForms.FormsPlot frmPl = new ScottPlot.WinForms.FormsPlot();
            this.Controls.Add(frmPl);
            frmPl.Dock = System.Windows.Forms.DockStyle.Fill;
            frmPl.MouseEnter += (s, ev) =>
            {
                MessageBox.Show("Mouse enter");
            };
            frmPl.MouseLeave += (s, ev) =>
            {
                MessageBox.Show("Mouse leave");
            };
            frmPl.Refresh();
@swharden swharden changed the title MouseEnter and MouseLeave events not getting fired FormsPlot: MouseEnter and MouseLeave events not getting fired May 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants