scatterview

ScatterViewItem custom size

Hello. I develop surface app using MVVM pattern. I have different Views and I want to place them into one ScatterView. I want my ScatterViewItem size correspond to the size of my Views? code example: <DataTemplate DataType="{x:Type vm:PointListViewModel}"> <Grid> <v:PointListView> ...

WPF ScatterView binding to multiple sources

Hi, I am using a ScatterView and am currently binding to a folder so that when my app starts up some sample images are displayed, this works great. <s:ScatterView x:Name="MainScatterView"> <s:ScatterView.ItemTemplate> <DataTemplate> <Image Source="{Binding}"/> </DataTemplate> </s...