Tagged Questions
22
votes
8answers
23k views
Good NumericUpDown equivalent in WPF?
I'm looking for a simple NumericUpDown (a.k.a. number spinner) control in WPF. This seems to be another lacking control in WPF. There must be some existing ones out there and I don't like to re-invent ...
15
votes
7answers
23k views
How do I get a TextBox to only accept numeric input in WPF?
I'm looking to accept digits and the decimal point, but no sign.
I've looked at samples using the NumericUpDown control for WinForms, and this sample of a NumericUpDown custom control from ...
10
votes
5answers
14k views
Where is the WPF Numeric UpDown control?
Possible duplicate: Good NumericUpDown equivalent in WPF?
Getting into the first serious WPF project. It seems like there are a lot of basic controls flat out missing. Specifically, I am ...
1
vote
0answers
392 views
TextBox control template with buttons
How to improve control template for custom numericupdown?
<Style TargetType="{x:Type Controls:FloatTextBoxPicker}" BasedOn="{StaticResource {x:Type TextBox}}">
<Setter ...
0
votes
1answer
343 views
How to set TabIndex of TextBox inside NumericUpDown control Silverlight
I am using a NumericUpDown control in my Silverlight application. I have an issue when using tab to navigate through controls in Silverlight page.
Case 1: When my control focus is on NumericUpDown ...
0
votes
1answer
130 views
How do I force the value of a subclassed textbox?
I, like so many, need to create a Numeric textbox control in WPF. I've made good progress so far, but I'm not sure what the right approach is for the next step.
As part of the control's spec, it ...
0
votes
2answers
410 views
WPF numeric up down custom control
I've been needing to use a numeric up-down control for my WPF app. I read a similar question posted here and tried using the one available here > http://bot.codeplex.com/.
I added the references and ...
0
votes
1answer
540 views
GridView: NumericUpDown column to update a second column
Using a gridview I a have one column with a NumericUpDown control bound to an underlying list of objects. The problem is I can bind to the valuechanged eventon the UpDown control, however when I ...