2010-04-23 43 views

回答

0

我解決了它。當你連接到設備時,路徑已經是diff了。答案:picturebox.Image =新的BitMap(@「example.jpg」);

+0

example.jpg必須位於設備存儲器中。 – cheesebunz 2010-04-28 05:32:58

0

你的問題不清楚的代碼。更改圖片框中的圖像很簡單:

var pathToMyFile = "\\My Program\\myimage.png"; 

if(pictureBox.Image != null) 
    pictureBox.Image.Dispose(); 

pictureBox.Image = new Bitmap(pathToMyFile); 

但是,您的筆記確實會說「桌面」。如果您想知道如何在圖像駐留在PC上時將圖像加載到設備上,那麼這並不那麼簡單。你需要找到一個機制(WCF服務可能是最簡單的),讓設備向PC詢問圖片。這個代碼比簡單的回答更復雜。

+0

非常感謝!!! :) – cheesebunz 2010-04-24 06:12:48

+0

我解決了它。當你連接到設備時,路徑已經是diff了。答案: picturebox.Image = new BitMap(@「example.jpg」); – cheesebunz 2010-04-28 03:35:35

相關問題