新建Form,拖两个Label,一个PictureBox,然后粘贴代码:
public partial class Form1 : Form
{
Dictionary
窗体上加几个Label,一个picturebox,一个imagelist,添加几张图到imagelist里,然后给formload和Form MouseMove添加代码
Listlist = new List ();//label数组
int idx = 0;//当前显示的图像索引号
private void Form1_Load(object sender, EventArgs e)
{
int i = 0;
foreach(Label c in Controls.OfType())
{
c.Tag = i++; //这里只是演示,所以是假定图像索引号与序号对应,即list[0]对应的imagelist中图像也是0,
//实际用的时候你可以灵活处理,比如说将相关信息存入(如用户名等),然后与它与实际的文件名对应
//也可以用诸如Dictionary之类的结构来存放用户的信息以及与之对应的图像名
c.MouseEnter += c_MouseEnter;
list.Add(c);
}
}
void c_MouseEnter(object sender, EventArgs e)
{
if(int.TryParse(((Label)sender).Tag.ToString(),out idx))
{
if (idx < imageList1.Images.Count && pb1.Image != imageList1.Images[idx])
{
pb1.Image = imageList1.Images[idx];
pb1.Visible = true;
}
}
}
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
pb1.Visible = false;
if (pb1.Image != null) pb1.Image = null;
}