首页上一页 1 下一页尾页 1 条记录 1/1页
C#入门与精通
发表在C#图书答疑
2009-06-05
是否精华
是
否
版块置顶:
是
否
namespace Test07
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
button1.Image = imageList1.Images[0];
button2.Image = imageList1.Images[1];
}
}
}
运行时说找不到imageList1文件,该怎么做?