我在使用Surface软件时遇到一个小问题:我有一个绑定的ScatterView,它的项目有一个DataTemplate。我的问题是:如何设置从ItemTemplate创建的ScatterViewItem的宽度和高度?
<s:ScatterView Name="svMain" Loaded="svMain_Loaded" ItemsSource="{Binding BallsCollection}" >
<s:ScatterView.ItemTemplate >
<DataTemplate>
<DockPanel LastChildFill="True" >
<DockPanel.Background>
<ImageBrush ImageSource="image\note.png" Stretch="Fill" />
</DockPanel.Background>
<TextBox Background="Transparent" DockPanel.Dock="Top" Text="{Binding Path=Message}"
IsReadOnly="True" TextWrapping="Wrap"></TextBox>
</DockPanel>
</DataTemplate>
</s:ScatterView.ItemTemplate>
</s:ScatterView>
答案 0 :(得分:3)
我相信你可以通过ItemContainerStyle设置它,就像其他ItemsControls一样,但我不确定,因为我没有Surface SDK。
<s:ScatterView.ItemContainerStyle>
<Style TargetType="{x:Type s:ScatterViewItem}">
<Setter Property="Width" Value="100"/>
<Setter Property="Height" Value="100"/>
</Style>
</s:ScatterView.ItemContainerStyle>
您当然也可以使用绑定代替固定单位。