标签:边框 nbsp 距离 cal enter padding order 元素 width
<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>
标签:边框 nbsp 距离 cal enter padding order 元素 width
原文地址:http://www.cnblogs.com/dotnetHui/p/7818304.html