Hi,
I have the following style defined:
<Style
x:Key="NumericUpDownStyle"
TargetType="input:SfNumericUpDown">
<Setter
Property="SpinButtonsAlignment"
Value="Both" />
</Style
I'm using it in the following way:
<input:SfNumericUpDown
x:Name="NumberSoldSfNumericUpDown"
Style="{StaticResource NumericUpDownStyle}"
Grid.Column="3"
Grid.Row="3"
Value="{Binding NumberSold}" />
There is no other place where I am setting SpinButtonsAlignment.
In the designer, this shows as expected, with one button on the left, the input box, and one button on the right.
At runtime, both buttons are on the right. How to fix?
Thanks,
Daniel