J'ai un petit problème en travaillant sur un logiciel pour une surface: J'ai un ScatterView lié et ses articles ont un DataTemplate. Ma question est: comment puis-je définir la largeur et la hauteur du ScatterViewItem qu'il est créé à partir du ItemTemplate?s: ScatterView ItemTemplate - comment régler la hauteur ou la largeur?
<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>
Merci, ça marche! –