我正在尝试在 xaml 中设置 wpf 数据网格的样式,使其看起来像 this image 。那可能吗?
我尝试了很多东西,但我仍然有以下问题:

  • 单元格边框属性仅影响选定的单元格。否则我只有 1px 的细线,可以通过 VerticalGridLinesBrush
  • 着色
  • 如果我在 datagrid.cell 级别指定背景颜色,它会覆盖选择
  • 我不知道在单元格级别(也用于选择)是否有圆角边缘

  • 我很感激四任何帮助。如果有帮助,我明天可以在这里发布几次尝试。

    编辑:
    这是我生成数据网格的代码,正如您所看到的,我在 datagrid.cellstyle 中尝试了背景和边距值,但是它导致了上述问题:
    <DataGrid x:Name="Grid" Height="305" VerticalAlignment="Top" Width="505" BorderThickness="1"
          AutoGenerateColumns="False" SelectionUnit="Cell" HeadersVisibility="None" ItemsSource="{Binding}"
          CanUserSortColumns="False" CanUserResizeColumns="False" CanUserReorderColumns="False" CanUserResizeRows="False"
          IsReadOnly="True" HorizontalAlignment="Left" BorderBrush="White" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Disabled"
          ScrollViewer.CanContentScroll="False" MouseLeftButtonUp="ScreenGrid_MouseLeftButtonUp" Margin="10,10,0,0" Background="#FF000000"
          VerticalGridLinesBrush="White" HorizontalGridLinesBrush="White" SelectedCellsChanged="ScreenGrid_SelectedCellsChanged" >
        <DataGrid.Resources>
            <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Blue"></SolidColorBrush>
            <Style x:Key="DataGridRowStyleColoured" TargetType="{x:Type DataGridRow}">
                <Setter Property="Background" Value="#FF000000" />
            </Style>
        </DataGrid.Resources>
        <DataGrid.RowStyle>
            <StaticResource ResourceKey="DataGridRowStyleColoured"/>
        </DataGrid.RowStyle>
        <DataGrid.CellStyle>
            <Style TargetType="DataGridCell">
                <Setter Property="BorderThickness" Value="0"/>
                <!--<Setter Property="Margin" Value="5,5,5,5"/> -->
                <!-- <Setter Property="Background" Value="White"/> -->
            </Style>
        </DataGrid.CellStyle>
    </DataGrid>
    

    最佳答案

    这应该让你开始: -

    <Page
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
      <Page.Resources>
          <Style x:Key="cellStyle" TargetType="DataGridCell">
            <Setter Property="Padding" Value="0" />
            <Setter Property="Margin" Value="2" />
            <Setter Property="Background" Value="Black" />
            <Setter Property="Template">
              <Setter.Value>
                    <ControlTemplate TargetType="DataGridCell">
                        <Border Background="Black" BorderThickness="0">
                          <Border x:Name="border"
                                  BorderBrush="White"
                                  BorderThickness="2"
                                  Background="Black"
                                  CornerRadius="5">
                              <ContentPresenter />
                          </Border>
                        </Border>
                        <ControlTemplate.Triggers>
                          <DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Path=IsSelected}" Value="true">
                            <Setter TargetName="border" Property="Background" Value="Orange"/>
                          </DataTrigger>
                        </ControlTemplate.Triggers>
                    </ControlTemplate>
              </Setter.Value>
            </Setter>
          </Style>
    
          <Style x:Key="rowStyle" TargetType="DataGridRow">
            <Setter Property="Padding" Value="0" />
            <Setter Property="Margin" Value="0" />
            <Setter Property="BorderThickness" Value="0"/>
            <Setter Property="Background" Value="Black" />
          </Style>
    
      <Grid>
        <DataGrid HeadersVisibility="None" GridLinesVisibility="None" SelectionMode="Single" SelectionUnit="Cell" IsReadOnly="true"
          RowStyle="{StaticResource rowStyle}" CellStyle="{StaticResource cellStyle}"
          Background="Black" Foreground="White" ItemsSource="{Binding MyData}" />
      </Grid>
    </Page>
    

    其中大部分是通过重新模板化 DataGridCell 来完成的。内边框创建圆角,而外边框确保圆角周围的“空间”中有黑色背景。

    我还添加了一个触发器来设置所选单元格的背景颜色。 DataGrid 配置为单单元格选择 - 看起来您的将是“多个”。

    关于c# - wpf datagrid 自定义(边框、单元格角等),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23325478/

    10-17 02:24