如何应用平底锅和平底锅同一形式4个图片框分别缩放
在我的项目中,我在一个表单中使用 4 个 pictureBox。
单独应用平移和缩放功能时,第一个图像可以正常工作,但是,如果我选择第二个图像,则第一个图像位图会更改为异常。
我不知道为什么会变成这样。请帮我。
我正在使用C Sharp。
In my project I am using 4 pictureBoxs in a single form.
While applying the pan and zoom function separately, the first image works correctly but, if I go for the second one the first image bitmap changes to exceptions.
I don't know why it changes like this. Please help me.
I am using C Sharp.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了我的问题的解决方案。
我的问题是位图变成异常,因为我在缓存中使用了相同的位置。所以数据被损坏了。为了克服这个问题,我们必须为位图分配新位置。
同样,我分配了 4 个变量并用于显示图像。
I got the solution for my question.
My problem is Bitmap changing into exceptions, because am used same location in cache. So data was corrupted. To overcome this we have to assign the new location for Bitmap.
Likewise i assigned 4 variables and used to display the images.