Torna al Thread
<UserControl x:Class="WpfApplication1.Presentation.StartScreenView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="397" d:DesignWidth="750">
<Grid>
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Disabled">
<WrapPanel Margin="5,5,5,0" Orientation="Vertical">
<WrapPanel.Resources>
<Style TargetType="Button">
<Setter Property="Width" Value="248"/>
<Setter Property="Height" Value="120"/>
<Setter Property="Margin" Value="0,0,5,5"/>
<Setter Property="Command" Value="{Binding Path=OpenView}"/>
<Setter Property="Content" Value="Sono una tile anche se non sembra"/>
</Style>
</WrapPanel.Resources>
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
<Button />
</WrapPanel>
</ScrollViewer>
</Grid>
</UserControl>