• 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>
    
    



    编辑器加载中...

  • 相关阅读:
    UPC 5130 Concerts
    poj 1079 Calendar Game
    2018 ACM-ICPC 中国大学生程序设计竞赛线上赛
    CF932E
    浅谈Tarjan算法
    拉格朗日差值
    扩展欧几里得算法(exgcd)
    欧拉定理
    莫比乌斯反演
    除法分块
  • 原文地址:https://www.cnblogs.com/WilliamJiang/p/2305493.html
Copyright © 2020-2023  润新知