阅读量:0
在WPF中,您可以使用Binding
类来绑定一个实现了INotifyPropertyChanged
接口的对象的属性。下面是一个示例代码,演示了如何在XAML中绑定一个TextBox
到一个实现了INotifyPropertyChanged
接口的ViewModel类的属性上:
<Window x:Class="YourNamespace.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:YourNamespace" Title="MainWindow" Height="350" Width="525"> <Window.DataContext> <local:ViewModel/> </Window.DataContext> <Grid> <TextBox Text="{Binding YourProperty, Mode=TwoWay}"/> </Grid> </Window>
在上面的代码中,ViewModel
类是一个实现了INotifyPropertyChanged
接口的ViewModel类,其中有一个名为YourProperty
的属性。然后,我们在TextBox
的Text
属性上使用Binding
来绑定到ViewModel
的YourProperty
属性上。
当ViewModel
中的YourProperty
属性发生变化时,INotifyPropertyChanged
接口会通知绑定的UI元素(这里是TextBox
),从而更新UI界面上对应的值。这样,在ViewModel
中修改YourProperty
属性时,UI界面上绑定的TextBox
的值也会相应地变化。