我有一个工作中的pivotviewer,里面有我自己拼凑的128张汽车图像。我使用了网络上的众多教程之一来使其正常工作,并且效果很好。然后我想我应该稍微装饰一下页面,所以我把 pv 所在的网格放在一个边界堆栈面板中,上面有几个文本块来告诉集合是什么。除图像外,一切都加载正常。注释掉堆栈面板行,它可以完美运行。
有任何想法吗?这么简单的事情怎么会失败?
这是 MainPage.xaml 中的所有代码:
<StackPanel>
<TextBlock
FontSize="24"
HorizontalAlignment="Center"
VerticalAlignment="Top">
Silverlight Pivotviewer Example
</TextBlock>
<TextBlock
FontSize="16"
HorizontalAlignment="Center"
VerticalAlignment="top">
Cool Automobiles
</TextBlock>
<Grid x:Name="LayoutRoot" Background="White">
<pivoter:PivotViewer x:Name="pivotViewer" />
</Grid>
</StackPanel>