0

我(有点)是 WPF 的新手。我被这种布局所困扰。Viewbox 显示良好,ListBox 的空间(30%)也显示良好,但我在该空间中看不到 ListBox。以下是我的 XAML,仅与问题有关。

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="70*"/>
        <RowDefinition Height="30*"/>
    </Grid.RowDefinitions>
    <Viewbox Grid.Row="0" Grid.Column="0" DataContext="{Binding ElementName=thisControl}">
        <ItemsControl ItemsSource="{Binding Path=SomeProperty}" ItemTemplate="{StaticResource SomeTemplate}" >
            <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <UniformGrid/>
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
        </ItemsControl>
    </Viewbox>
    <ListBox Grid.Row="1" Grid.Column="0" ItemTemplate="{StaticResource ListBoxItemTemplate}" ItemsSource="{Binding Path=SomeOtherProperty}" Utils:ListBoxExtenders.AutoScrollToEnd="True"/>
</Grid>  

任何帮助将不胜感激。

4

1 回答 1

0

这是DataContext在错误的级别上定义的。SomeOtherProperty是该上下文的一部分,没有它,任何数据都不会绑定到 ListBox。但是我仍然对为什么输出窗口中没有任何绑定错误感到困惑。嗯……

于 2013-05-09T10:52:46.240 回答