wpf / xaml中的相关表声明性数据绑定

时间:2011-10-15 15:07:08

标签: .net wpf xaml data-binding

我一直在研究一个非常小规模的WPF项目,以便在阅读Nathan的书时熟悉它。我试图在具有来自同一数据集的多个表的单个窗口上进行声明性绑定。架构(名称已被更改以保护无辜者)是:tblMany2 - tblOne - tblMany1

XAML在下面,但简而言之:

  • 我在windows _loaded处理程序中设置了datacontext。我已经尝试过数据集和概念上的主表(tblMany1)。
  • 我将组合框上的ItemSource设置为tblMany1。
  • 我在第二个组合框上将ItemSource设置为外键数据关系(原来它是tbo,但我已经工作了一段时间)。
  • 想法是通过更改第一个组合框来控制第二个组合框(和其他控件)。
  • 到目前为止,结果是第二个组合框中的空白条目,其中包含调试输出,说明无法找到我将ItemsSource设置为的对象的属性。

XAML:

<Window x:Class="MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace;system;assembly=mscorlib"
mc:Ignorable="d"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:my="clr-namespace:MyProject"
xmlns:dx="clr-namespace:System.Diagnostics;assembly=WindowsBase" 
    Height="500"
    Width="700"
    d:DesignHeight="350" d:DesignWidth="525" SizeToContent="WidthAndHeight">

<Window.Resources>
    <!--Data-->


    <!--Styles-->
    <Style x:Key="buttonStyle">
        <Setter Property="Button.Width" Value="85" />
        <Setter Property="Button.Height" Value="30" />
    </Style>
    <Style x:Key="chkImageStyle" TargetType="Image">
        <Setter Property="Image.Height" Value="25" />
        <Setter Property="Image.Width" Value="30" />
        <Setter Property="Image.Margin" Value="100,30,0,0" />
        <Setter Property="Image.Stretch" Value="Fill" />
        <Setter Property="Image.VerticalAlignment" Value="Top" />
        <Setter Property="Grid.Column" Value="1" />
        <Setter Property="Image.Source" Value="checkmark.jpg" />
        <Setter Property="Image.Visibility" Value="hidden" />
    </Style>

    <!--Data Tempaltes-->
    <DataTemplate x:Key="tblMany1Date">
        <TextBlock Text="{Binding Path=tblMany1Date, StringFormat=d,dx:PresentationTraceSources.TraceLevel=High}" />
    </DataTemplate>

    <DataTemplate x:Key="tblOneLink">
        <TextBlock HorizontalAlignment="Center">
            <Hyperlink NavigateUri="{Binding Path=tblOne.Link}">
                <Run Text="{Binding Path=tblOne.Name}" />
            </Hyperlink>
        </TextBlock>
    </DataTemplate>

</Window.Resources>

<Viewbox Stretch="Uniform" Height="500" Width="750">
    <!-- Main Dockpanel-->
    <DockPanel Name="DockPanel1">

        <!-- NavPane -->
        <StackPanel Height="315" Background ="LightBlue" DockPanel.Dock="Left" Name="StackPanel1" Width="135">
            <Button Margin="5" Content="New" Name="btnNewOne" Style="{StaticResource buttonStyle}"/>
            <Label Margin="0" Content="ManyDate:" Name="lblDate" />

            <!--Primary Control-->
            <ComboBox Margin ="0" IsSynchronizedWithCurrentItem="True" ItemsSource="{Binding Path=tblMany1}"
                  ItemTemplate="{StaticResource tblMany1Date}" Height="23" Name="cboDate" Width="120"
          ForceCursor="False" AllowDrop="False" />

            <TextBlock Margin="-5" Visibility="Hidden"/>

            <Label Margin="0" Content="OneName:" Name="lblOneName" />

            <ComboBox Margin="0" ItemsSource="{Binding FK_tblMany1_tblOne}"
                ItemTemplate="{StaticResource tblOneLink}" Name="cboOne" />

        </StackPanel>
    </DockPanel>
</Viewbox>

2 个答案:

答案 0 :(得分:0)

据我所知,您将两个组合框绑定到相同的数据上下文。 但是,如果我理解正确,您希望第二个组合框显示与第一个组合框中所选项目相关的项目。

您可以这样做(更改datacontext):

<ComboBox DataContext="{Binding SelectedItem, ElementName=cboDate}" Margin="0" ItemsSource="{Binding FK_tblMany1_tblOne}"
            ItemTemplate="{StaticResource tblOneLink}" Name="cboOne" />

或者以这种方式:

<ComboBox Margin="0" ItemsSource="{Binding tblMany1/FK_tblMany1_tblOne}"
            ItemTemplate="{StaticResource tblOneLink}" Name="cboOne" />

代码tblMany1/FK_tblMany1_tblOne中的斜杠符号表示绑定采用tblMany1集合的当前项,然后获取该项的属性FK_tblMany1_tblOne

修改 因为只有两个表,并且您希望显示相同的集合(但具有不同的字段),所以正确的代码可能看起来如此:

<ComboBox Margin="0" ItemsSource="{Binding tblMany1}"
            ItemTemplate="{StaticResource tblOneLink}" Name="cboOne" />

答案 1 :(得分:0)

我不知道的事情:数据集设计器中父子设置的重要性。我认为通过颠倒它们,我也会颠倒这种关系。但事实并非如此。一直存在的问题是tblMany1和tblOne之间的导航/关系属性默认定义为与概念情境相反。

感谢vorrtex提供关于“/”语法的关键信息。