1

我正在使用 MVVM 设计模式开发 WPF 应用程序。

我有一个 ViewModel 通过它的基类实现 INotifyPropertyChanged。ViewModel 包含一个属性,然后绑定到两个文本框。相关代码如下。

视图模型库

Public MustInherit Class ViewModelBase : Implements INotifyPropertyChanged
    Public Event PropertyChanged(sender As Object, e As PropertyChangedEventArgs) Implements INotifyPropertyChanged.PropertyChanged
    Protected Sub onPropertyChanged(propertyName As String)
        If Not propertyName Is Nothing Then RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(propertyName))
    End Sub
End Class

视图模型

Public Class TemplateEditVM : Inherits ViewModelBase
    Public Property Name As String
      Get
        Return _Template.Name
      End Get
      Set(value As String)
        If Not _Template.Name = value Then
          _Template.Name = value
          onPropertyChanged("TemplateEditName")
        End If
      End Set
    End Property
End Class

看法

<TextBox Text="{Binding Path=Name}" />
<TextBox Text="{Binding Path=Name}" />

首次加载视图时,属性名称的值会正确填充两个文本框。问题是,当我更改其中一个文本框中的文本时,另一个文本框中的文本不会更改,即使基础属性已更改。如果我单步执行它,我可以看到 PropertyChanged 事件正在被触发。

谁能告诉我为什么?非常感谢您的帮助。

4

1 回答 1

2

将绑定模式设置为双向

    <TextBox Text="{Binding Path=Name, Mode="TwoWay"}" />

并且您的 on propertyChanged 方法应该计算出您绑定到的确切名称

于 2013-02-12T10:15:44.317 回答