WPF:未调用 OnMouseLeftButtonDown
我正在创建一个源自面板的控件。当鼠标单击其中一个子项时,它会调用 OnMouseLeftButtonDown 重写方法。当鼠标单击控件本身时,没有事件。怎么会?
I'm creating a control which is derived from Panel. When mouse is clicked on one of the children it gets the OnMouseLeftButtonDown overriden method called. When mouse is clicked on the control itself, there is no event. How come?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果面板上没有设置背景,它不仅是透明的,而且是鼠标透明的。
这通常是通过自定义控件的默认样式的 TemplateBinding 设置的。
If you have no Background set on the Panel, it is not only transparent, but also mouse-transparent.
This is usually set via a TemplateBinding in the default style for your custom control.