【wpf】如果让Bingding 如何让后台数据强制更新界面

前言        

这里讲的不是简单的后台数据通知前台变换,而是在一段代码中,我的一个属性发生多次变化,前台也必须发生多次变化。

需求

我调用http,有个接收返回值的TextBox,但是我想在点击Post按键一开始就清理掉TextBox的显示,然后最后将接收值赋值给TextBox。

也就是在一段代码中我两次操作TextBox(通过bindding的方式),但是你会发现,第一次的清空是无效的。

解决方案

所以我需要这么做:

public static class DispatcherHelper
    {
        [SecurityPermissionAttribute(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)]
        public static void DoEvents()
        {
            DispatcherFrame frame = new DispatcherFrame();
            Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.Background, new DispatcherOperationCallback(ExitFrames), frame);
            try { Dispatcher.PushFrame(frame); }
            catch (InvalidOperationException) { }
        }
        private static object ExitFrames(object frame)
        {
            ((DispatcherFrame)frame).Continue = false;
            return null;
        }

    }

然后这么写:

//之前清除返回值, 这样写可以让清楚立即生效
    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(new Action(() => {
        Response = "";
    }));
    DispatcherHelper.DoEvents();  // 强制更新显示  

这样写清除才会立即生效。Response 和前台的TextBox是双向绑定的关系。

完整代码:

BtnGetCMD = new DelegateCommand<string>((content_type) => {
    //之前清除返回值, 这样写可以让清楚立即生效
    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(new Action(() => {
        Response = "";
    }));
    DispatcherHelper.DoEvents();  // 强制更新显示  

    string url = System.IO.Path.Combine(ipAddr, subPath);
    if (string.IsNullOrEmpty(url))
    {
        MessageBox.Show("请输入url");
        return;
    }
    string body = request;
    string result = rqh.Get(url, content_type);

    //显示返回值
    Response = result;
});

结果展示 

 好了,如果对你有帮助,请点个赞~~~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

code bean

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值