我将全景控件绑定到我的视图模型(类型ObservableCollection
)。
我用ItemTemplate
. 我不能使用HeaderTemplate
,因为它使过渡不是很顺畅(不知道为什么!!)这是我的 XAML
<controls:Panorama Name="panorama" >
<controls:Panorama.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="210"/>
</Grid.RowDefinitions>
<TextBlock Text="{Binding Name}"/>
</Grid>
</DataTemplate>
</controls:Panorama.ItemTemplate>
</controls:Panorama>
但是,在运行时,每个全景项目都会显示模型类名称。如果我使用HeaderTemplate
,它不会显示。如何解决?