WPF-StackPanel面板

StackPanel

Orientation属性
Orientation属性决定SatckPanel中元素的排列方向,默认为垂直排列 Orientation=“Vertical”


        
            

如图所示
WPF-StackPanel面板_第1张图片

将Orientation设置为Orientation="Horizontal"效果如下图
WPF-StackPanel面板_第2张图片

如何设置布局中StackPancel的位置

使用HorizontalAlignment属性设置子元素在布局中的水平位置


        
            

WPF-StackPanel面板_第3张图片

使用HorizontalAlignment属性设置子元素在布局中的垂直位置


        
            

WPF-StackPanel面板_第4张图片

Border

Border元素用于为面板设置边框,BorderThickness属性设置边框宽度,BorderBrush设置边框颜色,CornerRadius设置边框圆角的范围


    
        
            

WPF-StackPanel面板_第5张图片

你可能感兴趣的:(C#.NET,WPF)