首页 > 其他 > 详细

Grid表格属性

时间:2015-06-27 22:44:02      阅读:319      评论:0      收藏:0      [点我收藏+]

技术分享

 <Grid>
        <Grid.ColumnDefinitions> <!--添加列-->
            <ColumnDefinition Width="130"/>
            <ColumnDefinition Width="130"/>
            <ColumnDefinition Width="130"/>
            <ColumnDefinition Width="130"/>
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions> <!--添加行-->
            <RowDefinition Height="130"/>
            <RowDefinition Height="130"/>
            <RowDefinition Height="130"/>
            <RowDefinition Height="130"/>
        </Grid.RowDefinitions> <!--Grid.Column="2" Grid.Row="1" 指定button按钮在哪个地方-->
        <Button Grid.Column="2" Grid.Row="1" Content="Button" HorizontalAlignment="Center" Margin="0" VerticalAlignment="Center" Width="75"/>
    </Grid>

 

--其他的一些布局方式

 技术分享

Grid表格属性

原文:http://www.cnblogs.com/lk-kk/p/4604772.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!