DataTemplate で作成された scatterViewItem のスケーリングで問題が発生しました。
私はこのようなものを構築しました: http://msdn.microsoft.com/en-us/library/ff727736
私のプロジェクトにも同じ問題があります(見たい場合:-) mtscrumtool.codeplex.com)、scatterViewItemをスケーリングできませんでした。
ScatterViewItem の Datatemplate を以下に示します。
<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>
誰でも私を助けることができますか?
ありがとう