如何更改网格中列的背景颜色

时间:2014-12-16 13:32:13

标签: xaml windows-phone-8.1

  1. 我使用了以下代码,如何为第一个网格列使用背面颜色。
  2. 如何在Windows Phone 8.1中使用网格线作为网格。
  3. <Grid Grid.Column="0" Grid.Row="7"  Name="mgrid" Margin="0,10,0,0" Background="White">
         <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
            <RowDefinition />
         </Grid.RowDefinitions>
         <Grid.ColumnDefinitions >
            <ColumnDefinition Width="190"   />
            <ColumnDefinition Width="10" />
            <ColumnDefinition Width="*" />
         </Grid.ColumnDefinitions>  
    </Grid>
    

1 个答案:

答案 0 :(得分:-1)

在列定义之后,您可以创建一个位于第一个“列定义”内的矩形。然后,使用RowSpan属性,使其显示为完整列。

例如:

<Rectangle Background="Red" Grid.RowSpan="6"/>