I have a Stack Panel with some buttons inside, I want the Stack's available space to be equally divided between the buttons.
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<Button Content="USUÁRIOS" Height="auto"/>
<Button Content="IM" Height="auto" />
<Button Content="COMPOSIÇÃO" Height="auto" />
<Button Content="DEFEITOS" Height="auto" />
<Button Content="PERDAS" Height="auto" />
<Button Content="DIÁRIO" Height="auto" />
<Button Content="GERENCIAR" Height="auto" />
<Button Content="GED" Height="auto"/>
</StackPanel>
I want the buttons to fill in all that white space with equal sizes.