在 MainWindow.xaml 中有以下 xaml:
<Window x:Class="TestDependency.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
DataContext="{Binding RelativeSource={RelativeSource Self}}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Label Name="someLabel" Grid.Row="0" Content="{Binding Path=LabelText}"></Label>
<Button Grid.Row="2" Click="Button_Click">Change</Button>
</Grid>
</Window>
MainWindow.xaml.cs 后面的代码如下:
public static readonly DependencyProperty LabelTextProperty = DependencyProperty.Register("LabelText", typeof(String), typeof(MainWindow));
public int counter = 0;
public String LabelText
{
get
{
return (String)GetValue(LabelTextProperty);
}
set
{
SetValue(LabelTextProperty, value);
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
LabelText = "Counter " + counter++;
}
我原以为默认DataContext
是后面的代码。但我被迫指定DataContext
. 哪个DataContext
是默认值? Null
? 我原以为后面的代码会是(因为是同一个类)。
在这个示例中,我使用后面的代码来修改标签的内容,我可以直接使用:
someLabel.Content = "Counter " + counter++;
我希望作为背后的代码,如果DataContext
它在不同的类中,它不应该有你遇到的 UI 更新问题。