2011-08-02 93 views
0

我想爲圖像路徑添加一個參數。否則,我會通過帶整數的參數調用這些圖像。 例如:picturebox路徑參數

hamlekullanici.Image = Image.FromFile(@"images\\"+hamlekullanici+".png"); 

Username -- > hamle 
Variable -- > integer 

所以,我想顯示不同的圖像根據hamle number.How我能做到這一點?

回答

0

你可以使用string.Format爲圖像文件名創建字符串嗎?喜歡的東西...

hamlekullanici.Image = Image.FromFile(
     string.Format(@"images\{0}{1}.png", username, number); 

...還是我誤解你想要做什麼?