Loading

wp7 学习布局

        <Grid.RowDefinitions>
            <RowDefinition Height="50" />
            <RowDefinition Height="*"/>
            <RowDefinition Height="50" />
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="50" />
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="50" />
        </Grid.ColumnDefinitions>
        
        <Button Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" Content="Top" Background="Red"/>
        <Button Grid.Row="1" Grid.Column="2" Grid.RowSpan="2" Content="Right" Background="Green"/>
        <Button Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Content="Bottom" Background="Blue"/>
        <Button Grid.Row="0" Grid.Column="0" Grid.RowSpan="2" Content="Left" Background="Orange"/>
        <Button Grid.Row="1" Grid.Column="1" Content="Fill" Background="Black"/>
       

posted @ 2013-03-07 20:11  androllen  阅读(150)  评论(0编辑  收藏  举报