0

如果我有一个类,Car并且我调用了几个实例,例如一个吉普车。我将如何将我已经创建的图像资源绑定到这个实例?

public class Car
{
    public string Name;
    public string Color;
    public int Value;
}

Car Jeep = new Car();
Jeep.Name = "Jeep";
Jeep.Color = "Red";
Jeep.Value = 20000;
//Jeep.image = jeep; <--- Something like this is possible?

例如:
Image jeep = WindowsFormsApplication1.Resource1.image1;

我希望能够说类似的话, pictureBox1.Image = List[0].image;

因为我会将 Jeep、Camaro、Mustang 等列入清单。

有人指出我正确的方向吗?

4

1 回答 1

1

只需像定义名称、颜色和值一样将图像字段添加到 Car 类。然后,您将能够像分配其他变量一样分配它。

于 2013-03-13T18:07:27.467 回答