码迷,mamicode.com
首页 > 其他好文 > 详细

Grid表格属性

时间:2015-06-27 22:44:27      阅读:96      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!