我试图获得一个绑定到两个属性的标签,以对第二个属性做出反应。
这背后的基础是在公制和英制之间切换时更改字段的单位标签:
Image http://s7.postimage.org/wmw3vofmj/test.png
XAML代码如下:
<Label Name="UnitLabel" Grid.Column="1" Foreground="#FF1414AA" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Padding="2,2,5,2">
<Label.Content>
<MultiBinding Converter="{units:UnitConvertor}" Mode="OneWay">
<Binding Path="Unit" />
<Binding RelativeSource="{RelativeSource Mode=FindAncestor, AncestorType=base:MainForm, AncestorLevel=3}" Path="Document.Units" />
</MultiBinding>
</Label.Content>
</Label>
标签托管在用户控件上,实际文档包含许多:
Image http://s9.postimage.org/47hvp9uyn/test.png
Document对象如下所示:
public class Document : DependencyObject
{
public static readonly DependencyProperty UnitsProperty =
DependencyProperty.Register("Units", typeof (UnitSet), typeof (Document), new PropertyMetadata(default(UnitSet)));
public UnitSet Units
{
get { return (UnitSet) GetValue(UnitsProperty); }
set { SetValue(UnitsProperty, value); }
}
public Document()
{
Units = UnitSet.Imperial;
}
}
然后我尝试设置Units属性:
private void ChangeUnit(object sender, RoutedEventArgs e)
{
if (sender == Metric)
{
Document.Units = UnitSet.Metric;
}
else if (sender == Imperial)
{
Document.Units = UnitSet.Imperial;
}
}
但是,单位标签无法更新。我需要做些什么来解决这个问题?抱歉,如果遗漏了任何明显的事情,我两天前就开始了WPF。
答案 0 :(得分:3)
我不知道你的完整XAML树,但我认为你的AncestorLevel不正确。我猜你的MainForm是你的根元素,但你在那个绑定中说你正在寻找那个标签上面的第三个MainForm。尝试完全消除AncestorLevel。它默认为1.