GGI+ 通过HatchBrush画刷来填充区域。

先上图:

 

 通过hatchbrush根据图案来填充,

可通过HatchStyle枚举来设置图案。

代码如下:

View Code
  private void Form1_Paint(object sender, PaintEventArgs e)
        {
            Graphics g 
= e.Graphics;

            HatchBrush hb 
= new HatchBrush(HatchStyle.OutlinedDiamond, Color.Red, Color.White);
            g.FillRectangle(hb,ClientRectangle);
            hb.Dispose();
        }

 

 

posted on 2011-07-29 20:51  wtq  阅读(343)  评论(0编辑  收藏  举报