I got a problem with scaling the scatterViewItem which is created through DataTemplate.
I built something like this: http://msdn.microsoft.com/en-us/library/ff727736
It also have the same problem with my project(if you like to see:-) mtscrumtool.codeplex.com), the scatterViewItem couldn't be scaled.
The Datatemplate of the ScatterViewItem shows below:
<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>
Can anyone help me?
Thanks