我在 Silverlight 5 中有一个 ComponentOne 数字框,我希望范围从 0.000000000 到 999.999999999。所以我相应地设置了最大值和最小值,但是当我运行应用程序时,它允许我输入 1000.00000000。有谁知道这是为什么?有没有解决的办法?他是我在 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" />