将Collection类型的AttachedProperty绑定到TemplatedParent

时间:2017-03-02 09:51:34

标签: c# wpf xaml data-binding attached-properties

我想创建一个附加属性来保存MenuItem对象的集合。这些将在我的自定义ControlTemplate for GroupBoxes中使用。在那个ControlTemplate中,我想使用继承自ItemsControl的自定义DropDownButton,并将MenuItem放在它的Popup中。

我在这个网站上找到了tipps:
https://siderite.blogspot.com/2010/12/collection-attached-properties-with.html

以下是我所拥有的:

AttachedProperty:

public class General {
    public static readonly DependencyProperty MenuItemsProperty =
        DependencyProperty.RegisterAttached(
            "MenuItemsInternal",from convention
            typeof(ObservableCollection<MenuItem>), 
            typeof(General),
            new PropertyMetadata(default(ObservableCollection<MenuItem>)));

    public static ObservableCollection<MenuItem> GetMenuItems(UIElement element)
    {
         var collection = (ObservableCollection<MenuItem>) element.GetValue(MenuItemsProperty);
         if (collection == null)
         {
             collection = new ObservableCollection<MenuItem>();
             element.SetValue(MenuItemsProperty, collection);
         }
         return collection;
    }

    public static void SetMenuItems(UIElement element, ObservableCollection<MenuItem> value)
    {
        element?.SetValue(MenuItemsProperty, value);
    }
}

AttachedProperty的用法:

...
<GroupBox Style="{StaticResource Style.GroupBox.EditableSubSection}">
    <ap:General.MenuItems>
        <MenuItem Header="Aktion abc" />
        <MenuItem Header="Aktion xyz" />
    </ap:General.MenuItems>
</GroupBox>

到目前为止一切顺利。这一切都有效。我的问题是我找不到在ControlTemplate中为GroupBox使用MenuItems集合的方法。

 <Style x:Key="Style.GroupBox.EditableSubSection"
        TargetType="{x:Type GroupBox}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type GroupBox}">
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                    </Grid.RowDefinitions>
                    <TextBlock Text="{TemplateBinding Header}" />
                    <Separator Grid.Row="1" />
                    <ContentPresenter Grid.Row="2" />
                    <Grid Grid.Row="0" HorizontalAlignment="Right">
                        ...
                        <controls:DropDownButton Width="{Binding ActualHeight,
                                                                 RelativeSource={RelativeSource Self}}"
                                                 ItemsSource="{Binding Path=(ap:General.MenuItems),
                                                                       RelativeSource={RelativeSource TemplatedParent}}" />
                    </Grid>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>

运行时,问题似乎是绑定

 ItemsSource="{Binding Path=(ap:General.MenuItems), RelativeSource={RelativeSource TemplatedParent}}"

我收到以下消息的异常:

InvalidOperationException: Property path is not valid. 'General' does not have a public property named 'MenuItems'

有没有人经历过这种情况或者有关如何使用非传统名称绑定到AttachedProperty的任何问题?

1 个答案:

答案 0 :(得分:0)

@Jinish在评论中提供了答案。

  

我从代码中可以看到您的属性名称是“MenuItemsInternal”。据我所知,这不是用于WPF绑定目的的名称

将绑定更改为以下解决问题

ItemsSource="{Binding Path=(ap:General.MenuItemsInternal), RelativeSource={RelativeSource TemplatedParent}}"

由于无法将评论转换为答案,我正在回答我自己的问题,引用meta上建议的评论:https://meta.stackexchange.com/a/1558