阻止 PictureBox 接收事件 C#
我希望你能帮助我:)) 我想阻止/启用 PictureBox 来接收事件,我自己做不到,请帮助我:) 预先感谢:*
i hope you will help me :))
i want to Block/Enable PictureBox to receive events, i cant do myself, plase help me :)
thans beforehand :*
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需禁用
PictureBox
:禁用时,不会触发任何事件。但是,没有办法阻止其他事件更改 PictureBox 的属性,除非您创建自己的从 PictureBox 继承的类并覆盖/隐藏所有其他属性/方法调用。
Just disable the
PictureBox
:While it's disabled, it will not cause any events to fire. There's no way to stop other events changing the PictureBox's properties though, unless you create your own class inheriting from the PictureBox and override/hide all the other properties/method calls.