WPF基础之StackPanel面板进行简单布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF基础之StackPanel面板进行简单布局相关的知识,希望对你有一定的参考价值。
<Border BorderThickness="2" Padding="5" CornerRadius="15"> 边框宽度2 ,内边距(边框和内部内容之间的距离)5,圆角15像素
<StackPanel Orientation="Horizontal"> <!--StackPanel内的元素水平排列-->
<Button HorizontalAlignment="Left" /> 水平靠左
<Button VerticalAlignment="Center" /> 垂直居中
<Button Margin="10,0,10,0" MinWdith="20" MaxWidth="200" /> 作外边距10,右外边距10,最小宽度20,最大宽度200
</StackPanel>
</Border>
以上是关于WPF基础之StackPanel面板进行简单布局的主要内容,如果未能解决你的问题,请参考以下文章
WPF学习第七章 WrapPanel和DockPanel面板