1

我有一个嵌套在 ListBox 的 ItemTemplate 内的数据网格。我正在尝试使用它来显示类似树的数据结构。我的课程如下。

我的数据上下文中的对象包含一个List<Section>命名的Sections,我的 ListBox 绑定到这个。每个都Section包含一个List<Item>命名Items的,每个 ItemTemplate 中的 DataGrid 都绑定到这个。

当我运行应用程序时,我在绑定的行从 XAML 中获得了一个空引用异常。有没有更好/替代的方法来做到这一点,或者我错过了绑定的技巧?

<Window.Resources>
    <CollectionViewSource x:Key="SectionSource" /><!-- this is initialized and filled with an ObservableCollection<Section> Sections when the window loads-->
</Window.Resources>

<ListBox x:Name="lstIngredients" ItemsSource="{Binding Source={StaticResource SectionSource}}">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <DataTemplate.Resources>
                <CollectionViewSource x:Key="itemsSource" Source="{Binding Items}"/>
            </DataTemplate.Resources>

<DataGrid x:Name="dgItems" IsReadOnly="false" AutoGenerateColumns="False" SelectionMode="Single" SelectionUnit="FullRow" IsSynchronizedWithCurrentItem="True" 
    DataContext="{Binding}"
    ItemsSource="{Binding Source={StaticResource Items}}"
    EnableRowVirtualization="false" 
    VirtualizingStackPanel.VirtualizationMode="Standard"
        <DataGrid.Columns>
<DataGridTemplateColumn Width="2*" Header="{lex:LocText ChickenPing.Shared:Strings:Measurement}">
            <DataGridTemplateColumn.CellTemplate>
                <DataTemplate>
                    <TextBlock x:Name="quantity" Text="{Binding Measurement}" TextTrimming="CharacterEllipsis" TextAlignment="Left"/>
                    <!-- Null reference on this line caused by the binding. If I set this to any DependencyProperty on an Item object, I get a null reference-->
                </DataTemplate>
4

2 回答 2

0

我最终将其归结为在其中一个 TemplateColumns 中设置的事件。将事件从

<TextBlock x:Name="quantity" Text="{Binding Measurement}" GotFocus="txt_GotFocus" />

<Style x:Key="FocusableTextbox" TargetType="{x:Type TextBox}"> 
    <EventSetter Event="GotFocus" Handler="txt_GotFocus" /> 
</Style>
...
<TextBlock x:Name="quantity" Text="{Binding Measurement}" Style={StaticResource FocusableTextbox} />
于 2012-04-10T08:16:39.310 回答
0

这需要是路径

 ItemsSource="{Binding Source={StaticResource Items}}"

 ItemsSource="{Binding Path=PropertyThatIsCollection}"

并删除 DataContext 行

于 2012-04-07T17:48:28.900 回答