赢得手机滚动ListBox无法正常工作

时间:2014-10-27 12:30:20

标签: listbox scroll win-phone-silverlight-8.1

在win手机中,一个接一个地有两个网格,每个网格都有自己的listBox,滚动不起作用。 有什么想法吗?

<Grid x:Name="LayoutRoot"
    Background="Transparent">
<Grid.RowDefinitions>

        <RowDefinition Height="Auto" />
        <RowDefinition Height="*" />
</Grid.RowDefinitions>

<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentPanel1" Grid.Row="1" Margin="12,0,12,0">
  <ListBox x:Name="lstData1"
           ItemsSource="{Binding Source={StaticResource productCollection}, Path=DataCollection}">
    <ListBox.ItemTemplate>
      <DataTemplate>
        .................
      </DataTemplate>
    </ListBox.ItemTemplate>
  </ListBox>
</Grid>

    <Grid x:Name="ContentPanel2" Grid.Row="2" Margin="12,0,12,0">
        <ListBox x:Name="lstData2"
           ItemsSource="{Binding Source={StaticResource productCollection}, Path=DataCollection}">
            <ListBox.ItemTemplate>
                <DataTemplate>
                ..................
                </DataTemplate>
            </ListBox.ItemTemplate>
        </ListBox>
    </Grid>

</Grid>

谢谢 最诚挚的问候

1 个答案:

答案 0 :(得分:0)

必须为滚动指定高度