绑定到选定的TabItem内容

时间:2009-09-06 19:49:41

标签: wpf binding datacontext tabitem

我有一个带有两个控件的Window:control1是一个控件,它有一堆执行RoutedCommands的按钮;第二个控件是绑定到文档列表的TabControlTabControl ContentTemplate是一个用户控件control2,其中包含ListView。我想将control1的DataContext绑定到所选选项卡的control2的ListView。这是代码:

<Window x:Class="deleteme.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:deleteme"
    xmlns:sc="clr-namespace:System.Collections;assembly=mscorlib"
    xmlns:s="clr-namespace:System;assembly=mscorlib"
    Title="Window1" Height="300" Width="300">
    <Window.Resources>
        <sc:ArrayList x:Key="Tabs">
            <local:Document Name="doc1" />
            <local:Document Name="doc2" />
            <local:Document Name="doc3" />
        </sc:ArrayList>
    </Window.Resources>
    <DockPanel>
        <local:control1 DockPanel.Dock="Left" />
        <TabControl DockPanel.Dock="Left" ItemsSource="{StaticResource Tabs}" SelectionChanged="TabControl_SelectionChanged">
            <TabControl.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Path=Name}" />
                </DataTemplate>
            </TabControl.ItemTemplate>
            <TabControl.ContentTemplate>
                <DataTemplate>
                    <local:control2 />
                </DataTemplate>
            </TabControl.ContentTemplate>
        </TabControl>
    </DockPanel>
</Window>

<UserControl x:Class="deleteme.control1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:deleteme"
    x:Name="control">
    <StackPanel>
        <ItemsControl ItemsSource="{DynamicResource Actions}">
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <Button x:Name="actionButton" Content="{Binding Path=Text}" IsEnabled="{Binding Path=actionButton_IsEnabled}" Command="{Binding Path=Command}" CommandTarget="{Binding ElementName=control, Path=DataContext}" Click="actionButton_Click" />
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </StackPanel>
</UserControl>

<UserControl x:Class="deleteme.control2"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Grid>
        <ScrollViewer>
            <ListView x:Name="listView" ItemsSource="{Binding Items}" >
                <ListView.ItemTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding}" />
                    </DataTemplate>
                </ListView.ItemTemplate>
            </ListView>
        </ScrollViewer>
    </Grid>
</UserControl>

我想将control2的ListView绑定到control1的原因有两个:我可以使用ListView.SelectedItem作为RoutedCommand.Execute的参数,我可以使用ListView }作为CommandTarget,以便我可以处理与control2中的文档有关的操作。

我的问题是我无法弄清楚如何将control2的ListView绑定到control1。实际上,由于我是WPF的新手,因此我更有可能错误地解决问题。如果有人有任何建议,我将不胜感激。

1 个答案:

答案 0 :(得分:1)

不要考虑绑定listview,而是考虑绑定到数据。我假设您打算在两个用户控件之间使用数据;在这种情况下,只要你将DataContext放在树的较高位置,那么两个控件都可以访问它。