I'm trying to override the mousewheel control so that when the mouse wheel is moved up or down it only increases the value in the numericupdown field by 1. I believe it is currently using what is stored in the control panel and increasing/decreasing the value by 3 each time.

I'm using the following code. Even when numberOfTextLinesToMove is only 1 and I see that txtPrice.Value is getting populated as expected, something else is overwriting it because the value I set is not what is displayed in the numericupdown box

void txtPrice_MouseWheel(object sender, MouseEventArgs e)
        {
            int numberOfTextLinesToMove = e.Delta  / 120;
            if (numberOfTextLinesToMove > 0)
            {
                txtPrice.Value = txtPrice.Value + (txtPrice.Increment * numberOfTextLinesToMove);
            }
            else 
            {

                txtPrice.Value = txtPrice.Value - (txtPrice.Increment * numberOfTextLinesToMove);
            }

        }
link|improve this question

70% accept rate
feedback

1 Answer

up vote 0 down vote accepted

This is a bug reported here: NumericUpDown - use of mouse wheel may result in different increment

Microsoft's response in Feb 2007 states they cannot address this Visual Studio 2008.

There are two posted workarounds, both of which subclass NumericUpDown. Check the Workaround tab on the link.

The one I tried worked for me (posted by 'NanoWizard'):

using System;
using System.Windows.Forms;

internal class NumericUpDownControl : NumericUpDown
{
#region Constants
protected const String UpKey = "{UP}";
protected const String DownKey = "{DOWN}";
#endregion Constants

#region Base Class Overrides
protected override void OnMouseWheel(MouseEventArgs e_)
{
    String key = GetKey(e_.Delta);
    SendKeys.Send(key);
}
#endregion Base Class Overrides

#region Protected Methods
protected static String GetKey(int delta_)
{
    String key = (delta_ < 0) ? DownKey : UpKey;
    return key;
}
#endregion Protected Methods
} 
link|improve this answer
It is quite yucky code but I suppose it works most of the time. Don't put it on a scrollable panel. Best thing to do is to start with the code you can get from Reflector or the Reference Source, UpDownBase.OnMouseWheel method. Just replace the call to SystemInformation.MouseWheelScrollLines with 1. – Hans Passant Mar 8 '11 at 2:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.