[DllImport("User32.dll")]
        private static extern IntPtr WindowFromPoint(Point p);
        Point p;
        IntPtr h;
        p = Cursor.Position;
        h = WindowFromPoint(p);
        foreach (Control con in this.Controls)
        if (con.Handle == h)//h就是image空间的句柄,我的imag是编写的不是托的。
         {
          关键这里,怎么弄成con.image=System.Drawing.Bitmap.FromFile(Application.StartupPath + "/3.png");
          con默认没有imag这个属性。请大家帮忙
          }