我在缩放通过 DataTemplate 创建的 scatterViewItem 时遇到问题。
我建立了这样的东西:http: //msdn.microsoft.com/en-us/library/ff727736
我的项目也有同样的问题(如果你想看:-) mtscrumtool.codeplex.com), scatterViewItem 无法缩放。
ScatterViewItem 的数据模板如下所示:
<DataTemplate x:Key="ScatterViewItemDataTemplate" >
<Border BorderThickness="2" BorderBrush="White" Margin="10">
<StackPanel Background="{DynamicResource {x:Static s:SurfaceColors.Accent3BrushKey}}">
<Label Content="{Binding Name}"
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="20"/>
<Label Content="{Binding CanDrag}"
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="18"/>
</StackPanel>
</Border>
谁能帮我?
谢谢