I have a ComponentOne numericbox in Silverlight 5 and I want the range to be from 0.000000000 to 999.999999999. So I set the max and min accordingly but when I run the app it allows me to enter 1000.00000000. Anyone know why this is? Is there a way around this? He is my code in the xaml:
<c1:C1NumericBox SelectOnFocus="Always" x:Name="interestrateNumericbox"
AllowNull="True" Minimum="0.00000000" Maximum="999.99999999" Increment="0"
Format="N8" ShowButtons="False" RangeValidationMode="Always"
Value="{Binding Path=Model.InterestRate, Mode=TwoWay,
UpdateSourceTrigger=PropertyChanged,
Converter={StaticResource NullableDoubleToDouble}}" Height="26"
HorizontalAlignment="Left" Width="308" VerticalAlignment="Bottom"
d:LayoutOverrides="Height" />