活动“LostFocus”无法在样式中的目标标记上指定。使用 EventSetter 代替

发布于 2024-12-09 07:16:04 字数 486 浏览 0 评论 0原文

为什么我会收到此错误消息?我正在使用事件设置器!

<Style TargetType="{x:Type xcdg:DataCell}">
    <EventSetter Event="LostFocus" Handler="cellLostFocusHandler" />
</Style>

编辑

我没有使用内联样式。它在资源中,即:

<DataGrid.Resources>
    <Style TargetType="{x:Type xcdg:DataCell}">
        <EventSetter Event="LostFocus" Handler="cellLostFocusHandler" />
    </Style>
</DataGrid.Resources>

Why am I getting this error message? I'm using an event setter!

<Style TargetType="{x:Type xcdg:DataCell}">
    <EventSetter Event="LostFocus" Handler="cellLostFocusHandler" />
</Style>

edit

I'm not using the style inline. It's in a resource, i.e.:

<DataGrid.Resources>
    <Style TargetType="{x:Type xcdg:DataCell}">
        <EventSetter Event="LostFocus" Handler="cellLostFocusHandler" />
    </Style>
</DataGrid.Resources>

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

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

发布评论

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

评论(1

凉栀 2024-12-16 07:16:04

请参阅这个问题

听起来您正在使用内联样式,而不是作为资源,并且设置时存在问题内联样式的 EventSetter

See this question

It sounds like you're using the Style inline, instead of as a Resource, and there's issues in setting an EventSetter in an inline style

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