鼠标事件在 Silverlight Grid 中不起作用

发布于 2024-11-16 12:37:29 字数 282 浏览 0 评论 0原文

我创建了一个带有 TabControl (t1) 的网格 (g1)。 t1 的 TabItem 内容具有网格 (g2)。 g2 有另一个 TabControl 作为 t20,t21,t22 (垂直 TabControl),每个 t2 系列 TabItem 有另一个 Grid (g3) 。

我遇到的问题是鼠标事件不起作用 g3.当放置在 g2 中时,相同的函数也可以工作。

我尝试放置一个按钮而不是 g3,并且单击事件有效,如果我向 g3 添加按钮,则按钮单击事件有效。

什么可能导致鼠标事件不起作用?

I Have created a Grid (g1) with a TabControl (t1). t1's TabItem content has Grid (g2). g2 has another TabControl as t20,t21,t22 (vertical TabControl) and each t2 series TabItem has another Grid (g3) .

The issue I'm having is that a mouse event is not working g3. The same function works when placed in g2.

I have tried placing a button instead of g3 and click event works, and if I add a button to g3, then the button click events work.

What could be causing the mouse event to not work?

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

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

发布评论

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

评论(1

避讳 2024-11-23 12:37:29

您没有给出任何代码,但是,Silverlight 中有一个关于鼠标事件的非常常见的“陷阱”。除非明确设置了背景,否则元素不会引发这些事件。将您的 Grid.Background 设置为 Transparent,希望您的事件能够正常工作。

(如果这不起作用,我的最终猜测是 Z-Index!)

You have not given any code, however, there is a very common 'gotcha' in Silverlight regarding mouse events. An element will not raise these events unless it has a background explicitly set. Set your Grid.Background to Transparent and hopefully your events will work.

(If that doesn't work, my net guess is Z-Index!)

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