WPF如何设置DataContext

时间:2013-02-27 11:39:29

标签: wpf xaml binding datacontext

我有一个继承自Listbox的Control。 XAML看起来像这样:

<ListBox x:Class="Bibliothek.myDockControl"
         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:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300"
         x:Name="myListBox"
         >
<ListBox.ItemContainerStyle>
    <Style TargetType="ListBoxItem">
        <Setter Property="Height" Value="{Binding ItemHeight, UpdateSourceTrigger=PropertyChanged}"/>
        <Setter Property="Template">           
            <Setter.Value>
                <ControlTemplate TargetType="ListBoxItem">
                    <Border BorderThickness="1" BorderBrush="Black" CornerRadius="2">
                        <DockPanel>
                            <StackPanel DockPanel.Dock="Top" Background="LightGray">
                                <DockPanel Margin="2,2,2,2">
                                    <TextBlock x:Name="Beschreibung" DockPanel.Dock="Left" VerticalAlignment="Center" FontWeight="Bold" Text="{Binding Header,UpdateSourceTrigger=PropertyChanged}"></TextBlock>
                                </DockPanel>
                            </StackPanel>
                            <ContentPresenter DockPanel.Dock="Top" Content="{Binding Content}"></ContentPresenter>
                        </DockPanel>
                    </Border>                                          
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ListBox.ItemContainerStyle>

我有Textblock和contentpresenter的绑定。这些绑定来自我自己的DockItem类型。看起来像这样:

public class DockItem
{
    public string Header { get; set; }
    public object Content { get; set; }
}

绑定的这些属性是在我测试控件的窗口中设置的,来自typ observablecollection,它绑定到列表框的itemsource。

当我为后面的代码中声明的Height属性(ItemHeight)添加了一个绑定时,我不知道如何设置datacontext。如果我在listbox控件的代码隐藏中设置datacontext,如下所示:DataContext = this;然后,标题和内容的绑定不起作用。

1 个答案:

答案 0 :(得分:2)

您尝试将两个不同的数据上下文设置为一个ListBoxItem。 如果你肯定想从父窗口获取ItemHeight,那么你可以这样做:

 <Setter Property="Height" Value="{Binding ItemHeight, RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}"/>

不要忘记实施preperty更改通知,否则它不会对更改做出反应。 或者,您可以将ItemHeight添加到DockItem课程,然后您当前的方法就可以了。