当前位置: 首页> 文旅> 文化 > 一品威客网接单平台下载_建筑设计公司资质等级_南昌seo排名扣费_百度登录个人中心官网

一品威客网接单平台下载_建筑设计公司资质等级_南昌seo排名扣费_百度登录个人中心官网

时间:2025/8/27 5:08:38来源:https://blog.csdn.net/qq_34047402/article/details/146552072 浏览次数:2次
一品威客网接单平台下载_建筑设计公司资质等级_南昌seo排名扣费_百度登录个人中心官网

一、介绍

布局面板说明
Canvas       允许以任何方式放置子控件。不会对子控件位置施加任何控制
DockPanel       子控件紧贴四条边中的任意一边。最后一个控件则充满剩余区域
Grid                可分为若干行与若干列
StackPanel        

沿水平方向或者垂直方向进行排列

WrapPanel        

也是沿着水平或者竖直排列,但是以多行多列方式排行。

1.Grid可以分成几行几列(行列的高度或宽度可以指定具体尺寸,也可以使用比例(1*,2*,下边表示第3行比第4行高一倍)

    Grid可以嵌套Grid,或者其他控件比如stackpanel

     <Grid.RowDefinitions>
     <RowDefinition Height="20"/>
     <RowDefinition Height="100"/>
     <RowDefinition Height="2*"/>
     <RowDefinition Height="1*"/>
 </Grid.RowDefinitions>

2. stackpanel

        可以横向(Orientation="Horizontal")或者纵向(Orientation="Vertical")排列其中的控件。        

3. button, 文本内容是Content(与winform不同)

二、实际例子如下:

  <Grid ShowGridLines="true"><Grid.RowDefinitions><RowDefinition Height="20"/><RowDefinition Height="100"/><RowDefinition Height="2*"/><RowDefinition Height="1*"/></Grid.RowDefinitions><Button x:Name="btnFile" Content="文件" Height="20" Width="50" HorizontalAlignment="Left"  Grid.Column="0" Grid.Row="0" Margin="0,0,0,0  " Click="btnFile_Click"/><Button Content="编辑" Height="20" Width="50" HorizontalAlignment="Left"  Grid.Column="0" Grid.Row="0" Margin="50,0,0,0  "/><Button Content="视图" Height="20" Width="50" HorizontalAlignment="Left"  Grid.Column="0" Grid.Row="0" Margin="100,0,0,0  "/><Button Content="项目" Height="20" Width="50" HorizontalAlignment="Left"  Grid.Column="0" Grid.Row="0" Margin="150,0,0,0  "/><StackPanel Grid.Row="1" Grid.Column="0"><Button Content="按钮3" Height="50" Width="50" HorizontalAlignment="Left"/><Button Content="按钮4" Height="50" Width="50" HorizontalAlignment="Left"/></StackPanel><StackPanel Grid.Row="2" Grid.Column="0" Orientation="Horizontal"><Button Content="按钮5" VerticalAlignment="Top" Height="30" Width="50" HorizontalAlignment="Left"/><Button Content="按钮6" VerticalAlignment="Center" Height="30" Width="50" HorizontalAlignment="Left"/><Button Content="按钮7" VerticalAlignment="Bottom" Height="30" Width="50" HorizontalAlignment="Left"/></StackPanel><Grid  Grid.Row="3" Grid.Column="0"><Grid.ColumnDefinitions><ColumnDefinition Width="70"/><ColumnDefinition /></Grid.ColumnDefinitions><StackPanel Grid.Column="0"><Button Content="按钮8" Height="20"/><Button Content="按钮9" Height="20"/></StackPanel><StackPanel Grid.Column="1"><Button Content="按钮10" Height="20" Width="70"/><Button Content="按钮11" Height="20" Width="70"/></StackPanel></Grid>              </Grid>

关键字:一品威客网接单平台下载_建筑设计公司资质等级_南昌seo排名扣费_百度登录个人中心官网

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: