Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个页面中,有一个图像控件。当单击该图像时,我正在显示大图像。在某些情况下,我不想显示。为此,我正在尝试删除单击处理程序事件。请告诉我如何删除图像鼠标输入wp中的点击事件。
您可以使用-=运算符从事件中删除事件处理程序。
-=
删除从 a 的事件调用的事件处理程序OnTap_Handler的Tap示例Image。
OnTap_Handler
Tap
Image
Image.Tap -= OnTap_Handler;