khigia (owner)

Revisions

gist: 211473 Download_button fork
public
Description:
C# NumericUpDown MouseWheel event
Public Clone URL: git://gist.github.com/211473.git
Embed All Files: show embed
NumericUpDown MouseWheel #
1
2
3
4
5
6
7
8
9
10
class MyNumericUpDown : NumericUpDown
{
    protected override void OnMouseWheel (MouseEventArgs e)
    {
        // remove scrolllines scaling, taking care of case scrolllines is 0
        int delta = e.Delta / Math.Max (Math.Abs (SystemInformation.MouseWheelScrollLines), 1);
        base.OnMouseWheel (new MouseEventArgs (e.Button, e.Clicks, e.X, e.Y, delta));
    }
}