C#怎么把图片放数组里 5

数组是PictureBox[]ps;Image[]ims;Image[]imd;intspeed=20;intcounter=0;privatevoidfightgame... 数组是
PictureBox[] ps;
Image[] ims;
Image[] imd;
int speed = 20;
int counter = 0;
private void fightgame_Load(object sender, EventArgs e)
{
ps = new PictureBox[12];
ims = new Image[3];
imd = new Image[3];

}
展开
 我来答
变成新手
2013-01-18 · 超过21用户采纳过TA的回答
知道答主
回答量:83
采纳率:0%
帮助的人:49.6万
展开全部
可以这样,image是个抽象类,不管用imge[]数组还是list<image> 都只是第一步,需要的是往数组里面存image;

List<Image> imgArr = new List<Image>();
imgArr.Add(Image.FromFile("a.jpg", false));
imgArr.Add(Image.FromFile("a.jpg", false));
imgArr.Add(Image.FromFile("a.jpg", false));
System.Collections.IEnumerator itor = imgArr.GetEnumerator();
while (itor.MoveNext())
{
Console.WriteLine(((Image)itor.Current).RawFormat);//输出图片的格式
}
百度网友3d0b4a1
2013-01-18 · 超过59用户采纳过TA的回答
知道答主
回答量:232
采纳率:0%
帮助的人:136万
展开全部
再加上:
PictureBox pb1 = new PictureBox();
pb1.Image = ims[0];
ps[0] = pb1;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
君不见杀手
2013-01-18 · TA获得超过141个赞
知道小有建树答主
回答量:424
采纳率:0%
帮助的人:236万
展开全部
建个list好了
list<image>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式