1

我也许可以将标题中的描述做得更好一些。

这就是场景。

我有一个继承自 DependencyObject 的类 RecordNavigationDescriptor。里面有一个依赖属性,在这个范围内我们称之为“MyObject”。

我想将此对象分配给我的用户控件的标记属性。我希望'MyObject' dp 应该指向我的用户控件的控件之一。

<UserControl x:Class="ucTest"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:local="clr-namespace:Exchange"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <TextBlock Name="MyTextBlock" FontSize="72" FontWeight="ExtraBold" Text="Testing...."/>
        <Button VerticalAlignment="Bottom" Click="Button_Click">Click Me</Button>
        <Grid.Tag>
            <local:RecordNavigationDescriptor MyObject="{Binding ElementName=MyTextBlock}"  FriendlyName="Testing... Testing..."/>
        </Grid.Tag>
    </Grid>
</UserControl>

此绑定将不起作用。因此,“MyObject”将为 Null。

然而,

<UserControl x:Class="ucTest"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:local="clr-namespace:Exchange"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
        <TextBlock Name="MyTextBlock" FontSize="72" FontWeight="ExtraBold" Text="Testing...."/>
        <Button VerticalAlignment="Bottom" Click="Button_Click">Click Me</Button>
        <local:RecordNavigationDescriptor MyObject="{Binding ElementName=MyTextBlock}" FriendlyName="Testing... Testing..."/>
    </Grid>
</UserControl>

这将起作用。

那么,问题的原因是什么?

我是否必须将我的 RecordNavigationDescriptor 对象实例化为静态资源?然后将其分配给标签属性?

4

0 回答 0