I need help with using UniformGrid when I place a third button it goes to the next Line.
<UniformGrid Grid.Row="2" HorizontalAlignment="Right">
<Button x:Name="RuntimeButton" Style="{StaticResource BigButton}" Command="{Binding SelectRuntimeCommand}">Runtime</Button>
<Button x:Name="ConfigButton" Style="{StaticResource BigButton}" Command="{Binding SelectConfigureCommand}">Configure</Button>
<Button x:Name="LogButton" Style="{StaticResource BigButton}">Log</Button>
</UniformGrid>
UniformGrid seems to have Columns=2 internally so if you want three items to the right you have to set Columns=3