我有下面的 xaml 标记,按钮看不到在屏幕上伸展,而是左对齐。它包含在堆栈面板中。我在这里做错了什么?
<Grid>
<ListBox Name="SideNavBar">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical" HorizontalAlignment="Stretch">
<Button Content="{Binding}"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>