设置 DataGridCell 错误模板样式

发布于 2024-12-09 21:00:35 字数 99 浏览 0 评论 0原文

我希望 TextBoxDataGridColumn 上的文本框在单元格值无效时显示红色背景。我一直无法摆脱恼人的默认红色边框。

如何做到这一点?

谢谢!

I would like the TextBox on my TextBoxDataGridColumn to display a red background when the cell value is invalid. I haven't been able to get rid of the annoying default red border.

How to do this?

Thanks!

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

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

发布评论

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

评论(2

琉璃梦幻 2024-12-16 21:00:35

只需将此样式添加到您的控件资源中,它应该适用于控件中的所有文本框,然后 -

<Style x:Key="{x:Type TextBox}" TargetType="TextBox">
  <Setter Property="Validation.ErrorTemplate">
    <Setter.Value>
      <ControlTemplate>
        <Border Background="Red" Opacity="0.5" ToolTip="{Binding ElementName=adorner,Path=AdornedElement.(Validation.Errors)[0].ErrorContent}">
           <AdornedElementPlaceholder Name="adorner"/>
        </Border>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>

Simply add this style to your Control resources, it should work for all the textboxes in your control then -

<Style x:Key="{x:Type TextBox}" TargetType="TextBox">
  <Setter Property="Validation.ErrorTemplate">
    <Setter.Value>
      <ControlTemplate>
        <Border Background="Red" Opacity="0.5" ToolTip="{Binding ElementName=adorner,Path=AdornedElement.(Validation.Errors)[0].ErrorContent}">
           <AdornedElementPlaceholder Name="adorner"/>
        </Border>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文