zoukankan      html  css  js  c++  java
  • WPF布局(5) 使用共享尺寸组布局

    设置列ColumnDefinition 属性中的 SharedSizeGroup ,SharedSizeGroup的值相同时,可以控制一个Grid中的列和另外一个Gird中的某一列的宽度相同。
    还有一个要注意的是 顶级Grid元素的IsSharedSizeScope要设置为True
       
     <Grid Grid.IsSharedSizeScope="True" Margin="3" ShowGridLines="True">
    <Grid.RowDefinitions>
    <RowDefinition></RowDefinition>
    <RowDefinition Height="Auto"></RowDefinition>
    <RowDefinition></RowDefinition>
    </Grid.RowDefinitions>
    <Grid Grid.Row="0" Margin="3" Background="LightYellow" ShowGridLines="True">
    <Grid.ColumnDefinitions >
    <ColumnDefinition Width="Auto" SharedSizeGroup="TextLabel"></ColumnDefinition>
    <ColumnDefinition Width="Auto"></ColumnDefinition>
    <ColumnDefinition></ColumnDefinition>
    </Grid.ColumnDefinitions>
    <Label Margin="5">A very long bit of text</Label>
    <Label Grid.Column="1" Margin="5">More text</Label>
    <TextBox Grid.Column="2" Margin="5">A text box</TextBox>
    </Grid>
    <Label Grid.Row="1">Some text in between the two grids</Label>
    <Grid Grid.Row="2" Margin="3" Background="LightYellow" ShowGridLines="True">
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" SharedSizeGroup="TextLabel"></ColumnDefinition>
    <ColumnDefinition></ColumnDefinition>
    </Grid.ColumnDefinitions>
    <Label Margin="5">Short</Label>
    <TextBox Grid.Column="1" Margin="5">A text box</TextBox>
    </Grid>
    </Grid>
    
    



    编辑器加载中...

  • 相关阅读:
    zepto.js介绍
    box-sizing属性
    响应式网页高度自适应原理
    固定-比例-固定
    常用的js正则验证
    mysql之连接查询(多表查询)
    数据约束
    mysql表数据的增删改查
    mysql学习之数据库管理与表管理
    滑动选项卡的制作
  • 原文地址:https://www.cnblogs.com/WilliamJiang/p/2305493.html
Copyright © 2011-2022 走看看