将字符串绑定到 Text 属性
要在运行时更改 UI 内容,可以使用 Binding
。当 binded 属性从代码更改时,它将显示在 UI 中。
<TextBlock Text="{Binding Title}"/>
要通知 UI 有关更改,属性必须从 INotifyPropertyChanged
界面提升 PropertyChanged
事件,或者你可以使用 Dependency Property
。
如果属性 Title
在 xaml.cs 文件中或在 XAML
的 Datacontext 类中,则绑定正在工作。
Datacontext 可以直接在 XAML 中设置
<Window x:Class="Application.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Application">
<Window.DataContext>
<local:DataContextClass/>
</Window.DataContext>