Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1280
Incorrect behavior in XamCurrencyInbut
posted

Hi,

I am creating a XamCurrencyInput from code behind with the following code:

var xamCurrencyInput = new XamCurrencyInput
                {
                    Name = "Property" + property.PropertyId,
                    Tag = property,
                    Text = property.Value,
                    SpinWrap = false,
                    Margin = new Thickness(5),
                    Width = 120,
                    VerticalAlignment =  VerticalAlignment.Center,
                    ToolTip = property.PropertyName.Description,
                    SpinButtonDisplayMode = SpinButtonDisplayMode.MouseOver,
                    DisplayMode = InputMaskMode.IncludeLiteralsWithPadding,
                    
                };

It shows the correct value in the textfield, but when I want to change the text it only adds the entered text to the existing text, and I cannot delete the existing text.

Is this a bug or do I do something wrong ?

EDIT:

I am using version 2014.1

Parents Reply Children
No Data