(轉)winform pictureBox後台顯示圖片

來源:互聯網
上載者:User

標籤:winform   blog   http   使用   檔案   for   ar   art   

本文轉載自:http://blog.csdn.net/meizhiyun/article/details/8639002

1、擷取本地程式圖片

方法一

 pictureBox1.BackgroundImage = Image.FromFile(@"Resources\bg.gif");

 或是

pictureBox1.BackgroundImage = new System.Drawing.Bitmap(@"Resources\bg.gif");

注意:Resources檔案夾必須放在bin\Debug檔案夾下,否則提示找不到圖片

 

方法二

首先在根目錄下,建立一個名叫Resources的檔案夾,將圖片都放入該檔案夾下,然後雙擊開啟Resources.resx,點擊左上方的“添加資源”--->“添加現有檔案”,選擇建立的Resources檔案夾中的圖片

pictureBox1.BackgroundImage = Properties.Resources.bg2;

 

方法三

使用ImgList控制項,將圖片都添加到ImgList的Images屬性中

pictureBox1.BackgroundImage= ImgFirst.Images[0];

使用該方法的缺點是,不能通過圖片名稱尋找圖片,只能用數位識別碼,而且一旦在ImgList中刪除了前面的圖片,後面的圖片順序就會跟著改變。

 

2、擷取網路中的圖片

 方法一

Image myImg = Image.FromStream(WebRequest.Create("http://www.cma.gov.cn/tqyb/img/city/54823.jpg").GetResponse().GetResponseStream());
pictureBox1.BackgroundImage = myImg;

方法二

pictureBox1.Load("http://www.cma.gov.cn/tqyb/img/city/54823.jpg");

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.