无法绑定自定义用户控件的依赖项属性

时间:2011-08-03 20:30:42

标签: silverlight data-binding binding

我正在尝试创建一个图例控件,它是一个数据绑定的堆栈面板集,并且在使数据绑定工作方面存在重大问题。经过多次搜索后,我能够绑定到我的datatemplate中定义的标准控件。但是,当我使用完全相同的绑定来设置我的自定义控件上的值时,我的依赖项属性不会被设置。这是相关的XAML

编辑我使用一个简单的用户控件更改了我的复杂自定义项目,该控件只有一个按钮 - 效果相同 - 感谢您的帮助

       <StackPanel x:Name="LayoutRoot" Background="Transparent">

    <TextBlock Text="Legend:" />
    <ItemsControl x:Name="tStack" ItemsSource="{Binding LegendItems}">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <StackPanel Orientation="Vertical"/>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
        <ItemsControl.ItemTemplate>

            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                <Button Content="{Binding ItemLabel}"  />
                    <pxsc:TestItem  ItemLabel="{Binding ItemLabel}" />
                </StackPanel>
            </DataTemplate>

        </ItemsControl.ItemTemplate>
    </ItemsControl>
    <!--       <pxsc:PXLegendItem ItemColor="Green" ItemLabel="TextLabel"/> -->

</StackPanel>

// TestItem

<UserControl x:Class="SilverlightControls.TestItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400"
DataContext="{Binding RelativeSource={RelativeSource Self}}"             >

<Grid x:Name="LayoutRoot" Background="White">
    <Button Content="{Binding ItemLabel}" />
</Grid>
</UserControl>

后面的TestItem代码

    public partial class TestItem : UserControl
{
    public TestItem()
    {
        InitializeComponent();
    }
    #region ItemLabel
    public static readonly DependencyProperty ItemLabelProperty =
        DependencyProperty.Register("ItemLabel", typeof(string), typeof(TestItem), 
new PropertyMetadata(new PropertyChangedCallback(OnItemLabelPropertyChanged)));

    public string ItemLabel
    {
        get { return (string)GetValue(ItemLabelProperty); }
        set { SetValue(ItemLabelProperty, value); }
    }

    private static void OnItemLabelPropertyChanged(DependencyObject d,
 DependencyPropertyChangedEventArgs e)
    {

    }

    public static void SetItemLabel(DependencyObject obj, string val)
    {
        obj.SetValue(ItemLabelProperty, val);
    }
    public static double GetItemLabel(DependencyObject obj)
    {
        return (double)obj.GetValue(ItemLabelProperty);
    }
    #endregion
}

在我的示例代码中,我使用3个对象填充LegendItems。 ItemsControl创建三个正确标记的按钮和三个我的legenditem控件,没有任何标签集。

如果我取消注释最后一行,我确实看到附加控件正确接受TextLabel值。

我认为这是一个相当“按书”的实施方式,所以我很惊讶它不起作用,任何协助都非常感激!

1 个答案:

答案 0 :(得分:0)

作为黑暗中的一个刺,你没有将ItemLabel作为依赖属性实现,或者如果你没有正确实现它。如果后者然后使用相关代码编辑您的问题。

修改

由于您的控件将自己分配给DataContext,其祖先中的任何现有DataContext都将被忽略。删除您对DataContext的作业。将内部xaml更改为: -

<Grid x:Name="LayoutRoot" Background="White">
    <Button Content="{Binding Parent.ItemLabel, ElementName=LayoutRoot}" />
</Grid>

这应该让它运作起来。 BTW你真的需要GetItemLabelSetItemLabel静态方法吗?这些通常包含在附加属性中,但不包括标准依赖项属性。