我希望你能帮助我:)) 我想阻止/启用PictureBox接收事件,我不能自己,请帮助我:) 事先说:*
答案 0 :(得分:1)
只需停用PictureBox
:
PictureBox1.Enabled = false; // Will not fire any events
PictureBox1.Enabled = true; // Will now fire events
虽然它被禁用,但它不会导致任何事件触发。除非您创建自己继承自PictureBox的类并覆盖/隐藏所有其他属性/方法调用,否则无法阻止更改PictureBox属性的其他事件。