阻止PictureBox接收事件C#

时间:2010-09-27 09:31:14

标签: c# events picturebox

我希望你能帮助我:)) 我想阻止/启用PictureBox接收事件,我不能自己,请帮助我:) 事先说:*

1 个答案:

答案 0 :(得分:1)

只需停用PictureBox

即可
PictureBox1.Enabled = false; // Will not fire any events
PictureBox1.Enabled = true; // Will now fire events

虽然它被禁用,但它不会导致任何事件触发。除非您创建自己继承自PictureBox的类并覆盖/隐藏所有其他属性/方法调用,否则无法阻止更改PictureBox属性的其他事件。