WPF基础之UI布局
zhezhongyun 2025-05-28 21:40 41 浏览
知识点:
WPF中的布局控件主要有以下几种:
StackPanel:栈面板,可以将元素排列成一行或者一列。其特点是:每个元素各占一行或者一列。
WrapPanel:环绕面板,将各个控件从左至右按照行或列的顺序罗列,当长度或高度不够时就会自动调整进行换行,后续排序按照从上至下或从左至右的顺序进行。
DockPanel:停靠面板,定义一个区域,在此区域中,您可以使子元素通过描点的形式排列,这些对象位于 Children 属性中。
Grid:网格面板, Grid顾名思义就是“网格”,以表格形式布局元素,对于整个面板上的元素进行布局,它的子控件被放在一个一个事先定义好的小格子里面,整齐配列。 Grid和其他各个Panel比较起来,功能最多也最为复杂。
Canvas:画布面板,画布,用于完全控制每个元素的精确位置。他是布局控件中最为简单的一种,直接将元素放到指定位置,主要来布置图面。
1、StackPanel
Orientation属性指定排列方式:
Vertical(垂直)【默认】,垂直排列时,每个元素都与面板一样宽。
Horizontal(水平),水平排列时,每个元素都与面板一样高;
如果包含的元素超过了面板空间,它只会截断多出的内容。 元素的Margin属性用于使元素之间产生一定得间隔,当元素空间大于其内容的空间时,剩余空间将由HorizontalAlignment和 VerticalAlignment属性来决定如何分配。
首先是【默认】垂直(Vertical)情况下的布局:
<Window
x:Class="LayoutSample.StackPanelSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:LayoutSample"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="StackPanelSample"
Width="800"
Height="450"
mc:Ignorable="d">
<StackPanel Margin="5,5,5,5">
<Button
x:Name="button1"
Margin="2,5,2,5"
Content="按钮1" />
<Button
x:Name="button2"
Margin="2,5,2,5"
Content="按钮2" />
<Button
x:Name="button3"
Margin="2,5,2,5"
Content="按钮3" />
<Button
x:Name="button4"
Margin="2,5,2,5"
Content="按钮4" />
<Button
x:Name="button5"
Margin="2,5,2,5"
Content="按钮5" />
<Button
x:Name="button6"
Margin="2,5,2,5"
Content="按钮6" />
<Button
x:Name="button7"
Margin="2,5,2,5"
Content="按钮7" />
<Button
x:Name="button8"
Margin="2,5,2,5"
Content="按钮8" />
</StackPanel>
</Window>
水平布局,示例代码,与垂直排列相同,只是多了一个Oriention属性:
<StackPanel Margin="5,5,5,5" Orientation="Horizontal">
StackPanel其他常用属性:
HorizontalAlignment:水平对齐方式,值:Left,Center,Right,Stretch。
VerticalAlignment:垂直对齐方式,值:Bottom , Center,Stretch,Top。
Visibility:设置StackPanel是否可见,值:Visible,Hidden,Collapsed。
Background:设置背景颜色,值为Bursh类型的枚举值。
Width,Height,MinWidth,MinHeight,MaxWidth,MaxHeight:分别用来设置StackPanel的宽,高,最小宽,最小高,最大宽,最大高。
WrapPanel【环绕面板】:
WrapPanel布局面板将各个控件从左至右按照行或列的顺序罗列,当长度或高度不够时就会自动调整进行换行,后续排序按照从上至下或从左至右的顺序进行。
水平排列:当Orientation属性的值设置为 Horizontal:元素是从左向右排列的,然后自上至下自动换行。
<Window
x:Class="LayoutSample.WrapPanelSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:LayoutSample"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="WrapPanelSample"
Width="400"
Height="350"
mc:Ignorable="d">
<WrapPanel>
<Button
x:Name="button1"
Margin="2,5,2,5"
Content="按钮1" />
<Button
x:Name="button2"
Margin="2,5,2,5"
Content="按钮2" />
<Button
x:Name="button3"
Margin="2,5,2,5"
Content="按钮3" />
<Button
x:Name="button4"
Margin="2,5,2,5"
Content="按钮4" />
<Button
x:Name="button5"
Margin="2,5,2,5"
Content="按钮5" />
<Button
x:Name="button6"
Margin="2,5,2,5"
Content="按钮6" />
<Button
x:Name="button7"
Margin="2,5,2,5"
Content="按钮7" />
<Button
x:Name="button8"
Margin="2,5,2,5"
Content="按钮8" />
</WrapPanel>
</Window>
垂直布局,示例代码,与水平排列相同,只是多了一个Oriention属性:
<WrapPanel Margin="5,5,5,5" Orientation="Vertical">
WrapPanel其他常用属性,除了StackPanel属性常用属性,还有两个,如下所示:
ItemHeight:所有的元素都相同高度。
ItemWidth:所有的元素都相同宽度。
DockPanel【停靠面板】:
停靠面板类似于WinForm中控件的Dock属性。DockPanel会对每个子元素进行排序,并将根据指定的边进行停靠,多个停靠在同侧的元素则按顺序排序。
默认情况下,所有子元素都是靠左停靠【DockPanel.Dock=Left】
<Window
x:Class="LayoutSample.DockPanelSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:LayoutSample"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="DockPanelSample"
Width="600"
Height="450"
mc:Ignorable="d">
<DockPanel Margin="5,5,5,5">
<Button
x:Name="button1"
Margin="2,5,2,5"
Content="按钮1"
DockPanel.Dock="Left" />
<Button
x:Name="button2"
Margin="2,5,2,5"
Content="按钮2"
DockPanel.Dock="Top" />
<Button
x:Name="button3"
Margin="2,5,2,5"
Content="按钮3"
DockPanel.Dock="Right" />
<Button
x:Name="button4"
Margin="2,5,2,5"
Content="按钮4"
DockPanel.Dock="Bottom" />
<Button
x:Name="button5"
Margin="2,5,2,5"
Content="按钮5"
DockPanel.Dock="Left" />
<Button
x:Name="button6"
Margin="2,5,2,5"
Content="按钮6"
DockPanel.Dock="Top" />
<Button
x:Name="button7"
Margin="2,5,2,5"
Content="按钮7"
DockPanel.Dock="Right" />
<Button
x:Name="button8"
Margin="2,5,2,5"
Content="按钮8"
DockPanel.Dock="Bottom" />
<Button
x:Name="button9"
Margin="2,5,2,5"
Content="按钮9" />
</DockPanel>
</Window>
DockPanel其他常用属性,除了StackPanel属性常用属性,还有一个,如下所示:
- LastChildFill:最后一个子元素,是否填充剩余空间,默认为True。
设置不顶边:
<DockPanel Margin="5,5,5,5" LastChildFill="False">
Grid【网格面板】:
以表格形式布局元素,对于整个面板上的元素进行布局,要使用Grid,首先要向RowDefinitions和ColumnDefinitions属性中添加一定数量的RowDefinitions和 ColumnDefinitions元素,从而定义行数和列数。
放置在Grid面板中的控件元素都必须显示采用Row和Column附加属性定义其放置所在的行和列,这两个属性的值都是从0开始的索引数,如果没有显式设置任何行或列,Grid将会隐式地将控件加入在第0行第0列。
默认情况下,如果不设置Grid面板的行列宽,与高,则默认均分,且如果不显示设置子元素的大小,则默认填充。
<Window
x:Class="LayoutSample.GridSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:LayoutSample"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="GridSample"
Width="800"
Height="450"
mc:Ignorable="d">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button
x:Name="button1"
Grid.Row="0"
Grid.Column="0"
Margin="2,5,2,5"
Content="按钮1" />
<Button
x:Name="button2"
Grid.Row="0"
Grid.Column="1"
Margin="2,5,2,5"
Content="按钮2" />
<Button
x:Name="button3"
Grid.Row="0"
Grid.Column="2"
Margin="2,5,2,5"
Content="按钮3" />
<Button
x:Name="button4"
Grid.Row="1"
Grid.Column="0"
Margin="2,5,2,5"
Content="按钮4" />
<Button
x:Name="button5"
Grid.Row="1"
Grid.Column="1"
Margin="2,5,2,5"
Content="按钮5" />
<Button
x:Name="button6"
Grid.Row="1"
Grid.Column="2"
Margin="2,5,2,5"
Content="按钮6" />
<Button
x:Name="button7"
Grid.Row="2"
Grid.Column="0"
Margin="2,5,2,5"
Content="按钮7" />
<Button
x:Name="button8"
Grid.Row="2"
Grid.Column="1"
Margin="2,5,2,5"
Content="按钮8" />
<Button
x:Name="button9"
Grid.Row="2"
Grid.Column="2"
Margin="2,5,2,5"
Content="按钮9" />
</Grid>
</Window>
列宽和行高,分别可以在ColumnDefinition、RowDefinition里面指定Width、Height的值。
设置宽与高的几种方式:
固定值:设置具体的数字,单位为像素px。
Auto:根据子元素的大小,自动分配大小,刚好能够容纳子元素的内容。
星号*:根据比例自动分配剩余空间。
Grid面板其他属性,除了StackPanel属性常用属性,还有两个:
Grid.ColumnSpan:用于设置元素跨越的单元格列数。
Grid.RowSpan:用于设置元素跨越的单元格行数。
Canvas【画布面板】:
画布,用于完全控制每个元素的精确位置。他是布局控件中最为简单的一种,直接将元素放到指定位置,主要来布置图面。
Canvas通过设置Left,Top,Bottom,Right等属性的值,来设置子元素的位置,如果同时设置Canvas.Left和Canvas.Right属性,那么后者将会被忽略
<Canvas>
<Button x:Name="button1" Margin="2 5 2 5" Content="按钮1" Canvas.Left="20" Canvas.Top="50"/>
</Canvas>
Canvas的其他属性,除了StackPanel的常用属性外,还有两个属性:
- ClipToBounds:超出边界部分,是否需要进行剪裁。
- Panel.ZIndex:用于设置子元素在Z方向上的顺序,值越大,越靠上。如果两个元素重叠,则ZIndex值小的将会被覆盖。
相关推荐
- perl基础——循环控制_principle循环
-
在编程中,我们往往需要进行不同情况的判断,选择,重复操作。这些时候我们需要对简单语句来添加循环控制变量或者命令。if/unless我们需要在满足特定条件下再执行的语句,可以通过if/unle...
- CHAPTER 2 The Antechamber of M de Treville 第二章 特雷维尔先生的前厅
-
CHAPTER1TheThreePresentsofD'ArtagnantheElderCHAPTER2TheAntechamber...
- CHAPTER 5 The King'S Musketeers and the Cardinal'S Guards 第五章 国王的火枪手和红衣主教的卫士
-
CHAPTER3TheAudienceCHAPTER5TheKing'SMusketeersandtheCardinal'SGuard...
- CHAPTER 3 The Audience 第三章 接见
-
CHAPTER3TheAudienceCHAPTER3TheAudience第三章接见M.DeTrévillewasatt...
- 别搞印象流!数据说明谁才是外线防守第一人!
-
来源:Reddit译者:@assholeeric编辑:伯伦WhoarethebestperimeterdefendersintheNBA?Here'sagraphofStea...
- V-Day commemorations prove anti-China claims hollow
-
People'sLiberationArmyhonorguardstakepartinthemilitaryparademarkingthe80thanniversary...
- EasyPoi使用_easypoi api
-
EasyPoi的主要特点:1.设计精巧,使用简单2.接口丰富,扩展简单3.默认值多,writelessdomore4.springmvc支持,web导出可以简单明了使用1.easypoi...
- 关于Oracle数据库12c 新特性总结_oracle数据库12514
-
概述今天主要简单介绍一下Oracle12c的一些新特性,仅供参考。参考:http://docs.oracle.com/database/121/NEWFT/chapter12102.htm#NEWFT...
- 【开发者成长】JAVA 线上故障排查完整套路!
-
线上故障主要会包括CPU、磁盘、内存以及网络问题,而大多数故障可能会包含不止一个层面的问题,所以进行排查时候尽量四个方面依次排查一遍。同时例如jstack、jmap等工具也是不囿于一个方面的问题...
- 使用 Python 向多个地址发送电子邮件
-
在本文中,我们将演示如何使用Python编程语言向使用不同电子邮件地址的不同收件人发送电子邮件。具体来说,我们将向许多不同的人发送电子邮件。使用Python向多个地址发送电子邮件Python...
- 提高工作效率的--Linux常用命令,能够决解95%以上的问题
-
点击上方关注,第一时间接受干货转发,点赞,收藏,不如一次关注评论区第一条注意查看回复:Linux命令获取linux常用命令大全pdf+Linux命令行大全pdf为什么要学习Linux命令?1、因为Li...
- linux常用系统命令_linux操作系统常用命令
-
系统信息arch显示机器的处理器架构dmidecode-q显示硬件系统部件-(SMBIOS/DMI)hdparm-i/dev/hda罗列一个磁盘的架构特性hdparm-tT/dev/s...
- 小白入门必知必会-PostgreSQL-15.2源码编译安装
-
一PostgreSQL编译安装1.1下载源码包在PostgreSQL官方主页https://www.postgresql.org/ftp/source/下载区选择所需格式的源码包下载。cd/we...
- Linux操作系统之常用命令_linux系统常用命令详解
-
Linux操作系统一、常用命令1.系统(1)系统信息arch显示机器的处理器架构uname-m显示机器的处理器架构uname-r显示正在使用的内核版本dmidecode-q显示硬件系...
- linux网络命名空间简介_linux 网络相关命令
-
此篇会以例子的方式介绍下linux网络命名空间。此例中会创建两个networknamespace:nsa、nsb,一个网桥bridge0,nsa、nsb中添加网络设备veth,网络设备间...
- 一周热门
- 最近发表
-
- perl基础——循环控制_principle循环
- CHAPTER 2 The Antechamber of M de Treville 第二章 特雷维尔先生的前厅
- CHAPTER 5 The King'S Musketeers and the Cardinal'S Guards 第五章 国王的火枪手和红衣主教的卫士
- CHAPTER 3 The Audience 第三章 接见
- 别搞印象流!数据说明谁才是外线防守第一人!
- V-Day commemorations prove anti-China claims hollow
- EasyPoi使用_easypoi api
- 关于Oracle数据库12c 新特性总结_oracle数据库12514
- 【开发者成长】JAVA 线上故障排查完整套路!
- 使用 Python 向多个地址发送电子邮件
- 标签列表
-
- HTML 教程 (33)
- HTML 简介 (35)
- HTML 实例/测验 (32)
- HTML 测验 (32)
- JavaScript 和 HTML DOM 参考手册 (32)
- HTML 拓展阅读 (30)
- HTML文本框样式 (31)
- HTML滚动条样式 (34)
- HTML5 浏览器支持 (33)
- HTML5 新元素 (33)
- HTML5 WebSocket (30)
- HTML5 代码规范 (32)
- HTML5 标签 (717)
- HTML5 标签 (已废弃) (75)
- HTML5电子书 (32)
- HTML5开发工具 (34)
- HTML5小游戏源码 (34)
- HTML5模板下载 (30)
- HTTP 状态消息 (33)
- HTTP 方法:GET 对比 POST (33)
- 键盘快捷键 (35)
- 标签 (226)
- HTML button formtarget 属性 (30)
- opacity 属性 (32)
- transition 属性 (33)