具有低于在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++;
我会想到的是被后面的代码,它不应该有,你有,如果在UI更新问题DataContext
是在不同的类。