在WPF ListView / Gridview中设置列背景

时间:2009-09-04 15:18:04

标签: wpf xaml listview gridview styles

我想在WPF GridView中设置列的背景。许多Google搜索结果都指向设置GridViewColumn.CellTemplate以更改列的外观。但是,在设置背景颜色时我遇到了一个问题;它没有拉伸来填充细胞:

Ugly Grid View

这是我正在使用的xaml:

<Window x:Class="ScratchPadWpf.Window1"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Window1" Width="300" Height="300">
  <Grid>
    <ListView ItemsSource="{Binding}">
      <ListView.View>
        <GridView>
          <GridViewColumn>
            <GridViewColumn.CellTemplate>
              <DataTemplate>
                <Grid Background="Red">
                  <TextBlock Text="{Binding FirstName}"/>
                </Grid>
              </DataTemplate>
            </GridViewColumn.CellTemplate>  
          </GridViewColumn>
          <GridViewColumn>
            <GridViewColumn.CellTemplate>
              <DataTemplate>
                <Grid Background="Yellow">
                  <TextBlock Text="{Binding LastName}"/>
                </Grid>
              </DataTemplate>
            </GridViewColumn.CellTemplate>  
          </GridViewColumn>
        </GridView>
      </ListView.View>
    </ListView>
  </Grid>
</Window>

xaml.cs用于衡量标准:

public partial class Window1 : Window
{
  public Window1()
  {
    InitializeComponent();
    DataContext = new[]
    {
      new {FirstName = "Jim", LastName = "Bob"},
      new {FirstName = "Frank", LastName = "Smith"},
      new {FirstName = "Tooth", LastName = "Paste"},
    };
  }
}

将DataTemplate的Grid的宽度和高度设置为大于具有负边距的单元格可以产生结果,但是如果您调整列的大小,则问题会再次出现。

<Grid Background="Yellow" Height="22" Width="50" Margin="-6">

Still Ugly

有没有办法用彩色填充单元格?

2 个答案:

答案 0 :(得分:14)

设置HorizontalContentAlignment的{​​{1}}:

ItemContainerStyle

结果:

alt text

答案 1 :(得分:4)

挖掘一个旧线程,但我找到了一个狡猾的解决方案

<Grid Background="{Binding backGround}" Margin="-6,0,-6,0">
  <TextBlock Margin="6,0,6,0" Text="{Binding myText}" TextAlignment="Right" />
</Grid>

移动边距,使背景颜色填充整个单元格,然后将它们向后移动,使文本仍然在正确的位置。现在可以使用,直到它被正确修复。