1、整体上是 栈式布局
2、最简单的布局容器之一,基本特性水平或垂直排队
3、主要属性配置:Orientation(布局的方向)
4、使用场景:无处不在、工具栏ToolBar
代码案例如下:
<StackPanel Grid.ColumnSpan="5" >
<TextBox Text="{Binding MainModel.Value1,UpdateSourceTrigger=PropertyChanged}"/>
<Slider Minimum="0" Maximum="100" Value="{Binding MainModel.Value2}"/>
<TextBox Text="{Binding MainModel.Value3,UpdateSourceTrigger=PropertyChanged}"></TextBox>
<Button Command="{Binding MainModel.Btn1Command}"
CommandParameter="{Binding RelativeSource={RelativeSource Self}}"
Content="点击"></Button>
<Button Command="{Binding MainModel.Btn2Command}"
CommandParameter="{Binding RelativeSource={RelativeSource Self}}"
Content="装配"></Button>
</StackPanel>