1

我有一些 UI 元素在后面的代码中执行一些特定于 UI 的工作,然后更新数据上下文中的绑定。

WPF 元素:

    <TextBox Grid.Row="1"
             Text="{Binding PartNumber, UpdateSourceTrigger=Explicit}"
             Name="ui_partNumber"
             FontSize="35"
             VerticalContentAlignment="Center" />
    <Button Grid.Column="1"
            Grid.Row="1"
            Content="OK"
            Click="PartOKClick"
            FontSize="20"
            Width="150" />

后面的代码:

/// <summary>
/// Handle updating the view model with the part number
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void PartOKClick(object sender, RoutedEventArgs e) {

  //Get the textbox's binding expression
  BindingExpression be = ui_partNumber.GetBindingExpression(TextBox.TextProperty);

  if (Condition) {
    //Update part number binding
    be.UpdateSource();

    //Animate to next state
    InAnimate(ui_partGrid.Name);
    OutAnimate(ui_whichPartNumber.Name);
  }
  else {
    //Discard the text in the textbox 
    be.UpdateTarget();

    //Animate to notification state
    InAnimate(ui_invalidLocation.Name);
  }
}

我的 ViewModel 中的属性如下所示:

public string PartNumber{
    get { return _partNumber; }
    set { _partNumber = value; OnPropertyChanged("PartNumber"); }
}

我正在使用显式绑定,并且仅在检查结果时才更新源,否则我只是恢复到原始绑定。

问题是,这是明确使用绑定的最佳方式吗?如果我得到 100 个不同类型元素的 BindingExpression,我是否需要每次都手动完成?我能以更可重用的方式做到这一点吗?

4

2 回答 2

1

如果我理解正确,您愿意检查输入的值TextBox并仅在绑定有效时才更新绑定,对吗?

幸运的是,WPF 有一个内置的错误处理过程,它比你在那里所做的要干净得多。你应该读一些关于IDataErrorInfo

这篇文章很清楚如何使用它

作为你的例子,你会有这样的事情:

WPF 元素:

<TextBox Grid.Row="1"
         Text="{Binding PartNumber, ValidatesOnDataErrors=True}"
         Name="ui_partNumber"
         FontSize="35"
         VerticalContentAlignment="Center" />
<Button Grid.Column="1"
        Grid.Row="1"
        Content="OK"
        Click="PartOKClick"
        FontSize="20"
        Width="150" />

在你的ViewModel,你应该有这个:

public string this[string columnName]
        {
            get
            {
                if (string.Equals(columnName, "PartNumber", StringComparison.OrdinalIgnoreCase) || columnName == string.Empty)
                {
                    // Here, IDataErrorInfo is checking the property "PartNumber" bound to your TextBox
                    if (this.IsPartNumberValid(ui_partNumber.Text))
                    {
                        // Not valid: return any error message (string.Empty = no error, otherwise it will be seen as not valid)
                        return "Not valid!";
                    }
                }
                return string.Empty;
            }
        }

这应该为您解决问题:如果字符串“无效!” 返回时,TextBox将显示为红色边框,并且Binding不会更新

于 2013-01-03T20:55:29.807 回答
0

为什么你被迫使用显式绑定?为什么不在 ViewModel 中进行验证,然后仅在需要更新时触发 OnPropertyChanged("BindingParameter")?

像这样的东西(在VB中):

Property prop as Object
  Get
   return _prop
  End Get 
  Set(ByVal value As Object)
    If your_validation_check(value) then
      _prop = value
      OnPropertyChanged("prop") 'INotifyPropertyChanged
    End If
  End Set 
End Property
于 2013-01-23T01:35:29.000 回答