C#調用Resources.resx資源檔中的資源

來源:互聯網
上載者:User

使用到了.NET中的資源檔,也就是Resources.resx,於是就學會了如何調用資源檔中的資源。
首先,資源檔可以從項目屬性中的資源標籤添加。比如,我添加一個圖片,叫做aaa.png,添加入資源檔後,可以給他命名,比如叫它aaa。如此,添加檔案就完成了。
然後,在程式中調用,只需要一句話:
Properties.Resources.資源名
比如我剛添加的圖片,就寫Properties.Resources.aaa就ok了,當然在IDE中寫代碼的時候是會有提示的。
最後,沒了,就這麼簡單。
充篇幅,放一段代碼,來證明調用真的很簡單:

  1.         private void FormMain_Load(object sender, EventArgs e)
  2.         {
  3.             serviceController1.ServiceName = "XXX";//這是一個windows服務的名字
  4.             switch (serviceController1.Status)
  5.             {
  6.                 case ServiceControllerStatus.Stopped:
  7.                     {
  8.                         //pbxServer是一個PictureBox組件
  9.                         //ServerStop,ServerStart,Server分別是三張圖片
  10.                         pbxServer.Image = Properties.Resources.ServerStop;
  11.                         break;
  12.                     }
  13.                 case ServiceControllerStatus.Running:
  14.                     {
  15.                         pbxServer.Image = Properties.Resources.ServerStart;
  16.                         break;
  17.                     }
  18.                 default:
  19.                     {
  20.                         pbxServer.Image = Properties.Resources.Server;
  21.                         break;
  22.                     }
  23.             }
  24.         }

鬥爭了很久,到底要不要記在這裡,因為調用資源實在很簡單;可是我也確實費了好大勁才知道怎麼用的。
最後還是決定記下來,因為實在信不過自己的腦子……

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.