Top "Numericupdown" questions

NumericUpDown is a WPF/WinForm control that represents a numeric textbox that can be increased or decreased in value.

NumericUpDown ValueChanged event with immediate consequences?

I'm writing a small application in C# (.NET 4.0). I want to fire an event when value changes in numericUpDown, but …

c# event-handling numericupdown
Don't allow text entry in numericUpDown

I have a WinForm in C# with an NumericUpDown Control on it. I want the Control to change its value …

c# winforms numericupdown
Check if NumericUpDown is empty

How do I check whether the user left a NumericUpDown control empty, removing the value on it? So I can …

c# numericupdown
how to validate numericupdown when value change (and not lost focus)

I have a NumericUpDown and I need when value change (and not lostfocus) do a new calculation if i put …

c# winforms visual-studio-2010 numericupdown
How to display an empty value in NumericUpDown control?

I have a Windows Forms application that includes NumericUpDown control With Minimum and Maximum values set to (50:80) accordingly and step 1. …

vb.net winforms numericupdown
TextChanged Event of NumericUpDown

I am using Microsoft Visual C# 2010 Express. When i change the value of numericUpDown using arrows, my button becomes enable. …

c# winforms visual-studio-2010 numericupdown
Numericupdown mousewheel event increases decimal more than one increment

I'm trying to override the mousewheel control so that when the mouse wheel is moved up or down it only …

c# winforms mousewheel numericupdown
NumericUpDown: accept both comma and dot as decimal separator

There's a way to force c# NumericUpDown to accept both comma and dot, to separate decimal values? I've customized a …

c# decimal numericupdown