本文介绍了我正在获得IOexception句柄(位图)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你能帮我吗!!
我在C#中为智能设备应用程序编写了此代码
在阅读(7.png)图片时,我得到了IOexception句柄

can you help me please !!
i wrote this code in c# for smart device application
while i am reading (7.png) picture i am getting an IOexception handle

try
           {

               Bitmap bmp = new Bitmap("//7.png");

               pictureBox12.Image= (Bitmap)bmp.Clone();
           }
           catch (System.Exception ex)
           {
               MessageBox.Show(ex.Message);

           }

推荐答案


这篇关于我正在获得IOexception句柄(位图)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 14:57