博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WPF通过异常来验证用户输入
阅读量:5092 次
发布时间:2019-06-13

本文共 3391 字,大约阅读时间需要 11 分钟。

在WPF中使用数据绑定,如果用户输入和绑定类型转换失败,控件就会显示出现错误的模板,

比如一个Textbox绑定到一个int 属性,如果用户输入一个string,那这个textbox就会显示错误模板,一般会是在TextBox外显示红线,

当然这个模板也可以自己设置。那如果这个界面有一个确定Button,我想实现TextBox里输入非数字和数字值小于0时Button都不可用,

那该怎么实现呢?

 

namespace WpfApplication6

{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            this.DataContext = new ViewModel(this);
        }
    }
    public class ViewModel : INotifyPropertyChanged
    {
        private Window win = null;
        private int errors = 0;
        private int num1 = 0;
        public int Num1
        {
            get
            {
                return num1;
            }
            set
            {
                num1 = value;
                if (num1 < 0)
                {
                    throw new ArgumentException("值太小!");
                }
            }
        }
        private int num2 = 0;
        public int Num2
        {
            get
            {
                return num2;
            }
            set
            {
                num2 = value;
                if (num2 > 0)
                {
                    throw new ArgumentException("值太大!");
                }
            }
        }
        public ICommand OK_Command
        {
            get
            {
                return new ReLayCommand(() => {
                },()=> {
                    return errors == 0;
                });
            }
        }
        public event PropertyChangedEventHandler PropertyChanged;
        private void OnRaisePropertyChanged(string name)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(name));
            }
        }
        public ViewModel(Window win)
        {
            this.win = win;
            Validation.AddErrorHandler(win, ErrorHandler);
        }
        private void ErrorHandler(object sender, ValidationErrorEventArgs e)
        {
            if (e.Action == ValidationErrorEventAction.Added)
            {
                errors += 1;
            }
            if (e.Action == ValidationErrorEventAction.Removed)
            {
                errors -= 1;
            }
            OnRaisePropertyChanged("OK_Command");
        }
    }
    public class ReLayCommand : ICommand
    {
        private Action _execute = null;
        private Func<bool> _canExecute = null;
        public event EventHandler CanExecuteChanged;
        public ReLayCommand(Action _execute, Func<bool> _canExecute = null)
        {
            this._execute = _execute;
            this._canExecute = _canExecute;
        }
        public bool CanExecute(object parameter)
        {
            if (_canExecute != null)
                return _canExecute();
            return true;
        }
        public void Execute(object parameter)
        {
            if (_execute != null)
                _execute();
        }
    }
}

<Window x:Class="WpfApplication6.MainWindow"

        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:WpfApplication6"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <Style TargetType="TextBox">
            <Style.Triggers>
                <Trigger Property="Validation.HasError" Value="true">
                    <Setter Property="ToolTip" Value="{Binding RelativeSource={x:Static RelativeSource.Self},Path=(Validation.Errors)[0].ErrorContent}"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Resources>
    <Grid>
        <TextBox x:Name="textBox" HorizontalAlignment="Left" Height="23" Margin="140,76,0,0" TextWrapping="Wrap" Text="{Binding Path=Num1,UpdateSourceTrigger=PropertyChanged,NotifyOnValidationError=True,ValidatesOnExceptions=True}" VerticalAlignment="Top" Width="120"/>
        <TextBox x:Name="textBox1" HorizontalAlignment="Left" Height="23" Margin="140,160,0,0" TextWrapping="Wrap" Text="{Binding Path=Num2,UpdateSourceTrigger=PropertyChanged,NotifyOnValidationError=True,ValidatesOnExceptions=True}" VerticalAlignment="Top" Width="120"/>
        <Button x:Name="button" Command="{Binding Path=OK_Command}" Content="Button" HorizontalAlignment="Left" Margin="129,239,0,0" VerticalAlignment="Top" Width="75"/>
    </Grid>
</Window>

转载于:https://www.cnblogs.com/sjqq/p/8486043.html

你可能感兴趣的文章
《疯狂Java讲义》(七)---- 方法
查看>>
软工实践第四次作业
查看>>
如何使用Typora编辑数学公式?
查看>>
Oracle伪列(ROWNUM)的使用
查看>>
About abstract class.
查看>>
数组去重和两个数组求交集
查看>>
Delphi中怎么结束线程(这个线程是定时执行的)(方案一)
查看>>
【今日所得】1.29。。。
查看>>
云计算的服务类型
查看>>
HTML5
查看>>
hdu 5996 dingyeye loves stone(博弈)
查看>>
调用 WebService 请求因 HTTP 状态 407 失败
查看>>
css3中的文字效果
查看>>
ajax 调用asp.net后台方法
查看>>
319. Bulb Switcher
查看>>
Django models中关于blank与null的补充说明
查看>>
vc listview 大图标间距设置
查看>>
bzoj2260: 商店购物&&4349: 最小树形图
查看>>
解决YUM下Loaded plugins: fastestmirror Determining fastest mirrors 的错误问题
查看>>
MVC
查看>>