I want to read value entered in the NumericUpDown control. How do i read it?

XAML Layout is follows

  <StackPanel Style="{StaticResource StackPanelStyle_LableValue}">
                            <TextBlock Style="{StaticResource TextBlockStyle}" 
                                       Text="{Binding Path=ViewItem.Addition, Source={StaticResource LocalizedStrings }}" />
                            <inputToolkit:NumericUpDown Style="{StaticResource NumericUpdownStyle_Addition}"
                                                        Value="{Binding Items.RightSpecGlass.Addition, Mode=TwoWay}" 
                                                        TabIndex="8" />
                        </StackPanel>
link|improve this question

43% accept rate
Show XAML layout – sll Aug 12 '11 at 12:15
Have you set your view's datacontext ? – Saber Amani Aug 13 '11 at 10:47
@S.Amani yes i have set. I want to read the value in code behind of XAML – PramodChoudhari Aug 16 '11 at 4:18
So you want to get its value with binding, yes ? – Saber Amani Aug 16 '11 at 4:25
Have you initiate those stuffs ? I mean Items and RightSpecGlass ? – Saber Amani Aug 16 '11 at 4:29
show 1 more comment
feedback

2 Answers

You can use

numericUpDown.Value; // To get decimal value of control

or

numericUpDown.Text; // To get value as string of control
link|improve this answer
1  
He wants to bind NumericUpDown's value not to get its value directly by naming the controls. – Saber Amani Aug 13 '11 at 10:46
feedback

Well, Since you have bind your view context, I think there is no reason to avoid get NumericUpDown's value except :

1- Maybe you forgot to initialize those classes or properties Items and/or RightSpecGlass

2- Your class doesn't implement INotifyPropertyChanged to raise when any control's value change in view. Addition property has to raise property change event in its setter.

    public event PropertyChangedEventHandler PropertyChanged;
    public virtual void RaisePropertyChanged(string propertyName)
    {
        var handler = PropertyChanged;
        if (handler != null)
            handler(this, new PropertyChangedEventArgs(propertyName));
    }
    private int _addition;
    public Int32 Addition
    {
        get { return _addition; }
        set
        {
            _addition= value;
            RaisePropertyChanged("Addition");
        }
    }

hope this help.

link|improve this answer
i have used View Model its working fine . I got a bug which I described in this question stackoverflow.com/questions/7039529/… . Once i will get the string value entered in the numeric control i can parse it as i want. – PramodChoudhari Aug 16 '11 at 5:00
feedback

Your Answer

 
or
required, but never shown

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