picturebox路径参数

时间:2011-08-02 15:18:16

标签: c# picturebox

我想在图像路径中添加一个参数。否则,我会通过带整数的参数调用这些图像。 例如:

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

Username -- > hamle 
Variable -- > integer

所以,我想根据hamle数字显示不同的图像。我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用string.Format为图片文件名创建字符串吗?有点像...

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

......或者我误解了你想要做什么?