采取步骤;
   1.定义一图片变量:
    Bottom_Left=new Bitmap("Bottom_Left.jpg");
   2.Paint事件
  Brush brush = new TextureBrush(Bottom_Left, new Rectangle(0, 0,Bottom_Left.Width,Bottom_Left.Height))
 g.FillRectangle(brush,0,0 , Bottom_Left.Width,Bottom_Left.Height);  //显示正常
g.FillRectangle(brush,100,100 , Bottom_Left.Width,Bottom_Left.Height);  //显示异常"好象绘制图片时不是从左上角画,搞不明白,请哪位高手指点一下!"