网上找的代码都不行啊
//封装一个图像对象,该对象即主窗体背景图片
Bitmap bm = new Bitmap(this.BackgroundImage, this.Width, this.Height);
//绘制矩形,定义你需要截取的图像起始位置和宽高
Rectangle r = new Rectangle(lv.Location.X, lv.Location.Y, lv.Width, lv.Height);
//按矩形尺寸和起始位置截取bm的一部分
bm = bm.Clone(r, System.Drawing.Imaging.PixelFormat.Undefined);
//把截取到的图片设置为lv背景,达到与主窗体背景完美契合的效果
lv.BackgroundImage = (Image)bm;
//封装一个图像对象,该对象即主窗体背景图片
Bitmap bm = new Bitmap(this.BackgroundImage, this.Width, this.Height);
//绘制矩形,定义你需要截取的图像起始位置和宽高
Rectangle r = new Rectangle(lv.Location.X, lv.Location.Y, lv.Width, lv.Height);
//按矩形尺寸和起始位置截取bm的一部分
bm = bm.Clone(r, System.Drawing.Imaging.PixelFormat.Undefined);
//把截取到的图片设置为lv背景,达到与主窗体背景完美契合的效果
lv.BackgroundImage = (Image)bm;