1

我有一种情况,我需要拦截 WPF 尝试设置绑定到文本框的属性的值,并更改实际存储的值。基本上,我允许用户在 TextBox 中输入一个复杂的值,但会自动将其解析为组件。

一切正常,除了我无法让 UI 刷新并向用户显示新计算的值。

查看模型

public class MainViewModel : INotifyPropertyChanged
{
  private string serverName = string.Empty;

  public event PropertyChangedEventHandler PropertyChanged;

  public string ServerName
  {
    get
    {
        return this.serverName;
    }
    set
    {
        this.serverNameChanged(value);
    }
  }

  private void NotifyPropertyChanged(String propertyName)
  {
    if (this.PropertyChanged != null)
    {
      this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
  }

  private void serverNameChanged(string value)
  {
    if (Uri.IsWellFormedUriString(value, UriKind.Absolute))
    {
      var uri = new Uri(value);
      this.serverName = uri.Host;
      this.NotifyPropertyChanged("ServerName");

      // Set other fields and notify of property changes here...
    }
  }
}

看法

<TextBox Text="{Binding ServerName}" />

当用户键/粘贴/等。一个完整的 URL 进入“​​服务器名称”文本框和标签,视图模型代码运行并且视图模型中的所有字段都正确设置。绑定到 UI的所有其他字段都会刷新和显示。但是,即使该ServerName属性返回正确的值,Text屏幕上显示的还是旧值。

有没有办法强制 WPF 在“源属性更改”过程中获取我的新属性值并刷新显示?

笔记:

我也尝试过制作ServerNameDependencyProperty实际进行工作,PropertyChangedCallback但结果是相同的。

4

1 回答 1

0

正如 Bill Zhang 所指出的,实现这一点的方法是NotifyPropertyChanged通过调度程序运行偶数;这会导致事件在当前事件完成后运行,并正确更新显示。

Dispatcher.CurrentDispatcher.BeginInvoke(new Action(() => 
    this.NotifyPropertyChanged("ServerName"))) 
于 2014-08-21T16:37:48.547 回答