正在将值验证为WPF中TextBox中的数字

本文关键字:TextBox 数字 WPF 验证 | 更新日期: 2023-09-27 18:25:58

我正在WPF应用程序中将float?属性绑定到TextBox。我还有ValidatesOnDataErrors

当我输入无效的非数字值时,TextBox的边框将变为不同的颜色,因为它无法将该值转换为float。因此该值绑定到null

我的问题是-如何阻止它绑定到null?我真的想给出一个错误,比如"请只输入数值"。非常感谢。

正在将值验证为WPF中TextBox中的数字

样式是数据输入验证的最佳方法。您所需要做的就是将此样式复制到Window或UserControl中
注意:我使用工具提示,但您可以使用自己的方法向用户显示通知:

<Window.Resources>
    <Style TargetType="{x:Type TextBox}">
        <Style.Triggers>
            <Trigger Property="Validation.HasError" Value="true">
                <Setter Property="Background" Value="Pink"/>
                <Setter Property="Foreground" Value="Black"/>
            </Trigger>
        </Style.Triggers>
        <Setter Property="Validation.ErrorTemplate">
            <Setter.Value>
                <ControlTemplate>
                    <Grid>
                        <Polygon Points="9,9 9,0 0,0" Stroke="Red" StrokeThickness="1" Fill="Red" HorizontalAlignment="Right"  VerticalAlignment="Top"
                                     ToolTip="Please enter numeric values only"/>
                        <AdornedElementPlaceholder x:Name="valAdorner" VerticalAlignment="Center">
                            <Border BorderBrush="red" BorderThickness="1" />
                        </AdornedElementPlaceholder>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</Window.Resources>