0

我正在尝试将标签绑定到两个属性以对第二个属性的更改做出反应。

这背后的基础是在公制和英制之间切换时更改字段的单位标签:

图片 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>

标签托管在用户控件上,实际文档有许多:

图片 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。

4

1 回答 1

3

我不知道您的完整 XAML 树,但我认为您的 AncestorLevel 不正确。我猜 MainForm 是您的根元素,但您在该绑定中说您正在寻找该标签上方的第三个 MainForm。尝试完全消除 AncestorLevel。它默认为 1。

于 2013-01-30T13:18:07.290 回答