Skip to content

FormsPlot: forward all PictureBox mouse events #892

@grabul

Description

@grabul

Due to the refactoring of the WinForm control by adding a picturebox in the FormsPlot user control the mouse events like OnMouseDown are no more forwarded like in the laste stable release.

A fix would be something like this

private void PictureBox1_MouseDown(object sender, MouseEventArgs e)
{
    Backend.MouseDown(GetInputState(e));
    base.OnMouseDown(e);
}

Or is it by intension to remove that?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions