WPF:如何在一个样式类中设置 DataGridTextColumn 的样式?

发布于 2024-10-27 22:27:04 字数 586 浏览 0 评论 0原文

我尝试分别对 DataGridTextColumn 设置标题和单元格样式进行样式化:

   <Style x:Key="headerStyle">
            <Setter Property="DataGridColumnHeader.Background" ... />
   ...

    <Style x:Key="cellStyle">
            <Setter Property="DataGridCell.Background" ... />
  ...


<DataGrid>
  <DataGrid.Columns>
     <DataGridTextColumn 
          HeaderStyle="{StaticResource ResourceKey='headerStyle'}" 
          CellStyle="{StaticResource ResourceKey='cellStyle'}" ... />

Can I stylize DataGridTextColumn 标题、单元格和其他属性在一个样式声明中吗?

I try to stylize DataGridTextColumn setting Header and Cell styles separatly:

   <Style x:Key="headerStyle">
            <Setter Property="DataGridColumnHeader.Background" ... />
   ...

    <Style x:Key="cellStyle">
            <Setter Property="DataGridCell.Background" ... />
  ...


<DataGrid>
  <DataGrid.Columns>
     <DataGridTextColumn 
          HeaderStyle="{StaticResource ResourceKey='headerStyle'}" 
          CellStyle="{StaticResource ResourceKey='cellStyle'}" ... />

Can I stylize DataGridTextColumn Header, Cell and other properties in one style declaration?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没结果 2024-11-03 22:27:04

据我所知,这可能是不可能的,因为 DataGridTextColumn 不提供自己的 Template 或 Style 属性,可用于集体设置其他样式。

As far as i can tell that might be impossible since DataGridTextColumn does not provide a Template or Style property of its own which could be used to set the other styles collectively.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文