picturebox控件 加载动态图片问题 急!
用PICTURE BOX 加载图片picRight.Image = new Bitmap(fileName);图片是GIF 动态的,这样显示是动态的 但是图片位置是从0,0开始 设置ImageLocation没用,貌似这个属性不是位置,
然后我用DrawImage方法但是 显示的都是静态的。
Bitmap image = new Bitmap(fileName);
g = picLeft.CreateGraphics();
g.DrawImage(image, new Point(12, 13));
求解答怎么加载动态到PICTURE BOX