I am using silver-light numeric up-down control. Control is set for decimal numbers.
Maximum limit 28 and minimum limit is -28
Incremen
Create a subclass of NumericUpDown and override the ParseValue method:
public class MyNumericUpDown : NumericUpDown {
protected override double ParseValue(string text)
{
// Change text to whatever you want
string newText = FixText(text);
// Call base implementation.
base.ParseValue(newText);
}
private static string FixText(string inputText) {
// DO YOUR STUFF HERE.
}
}