当前位置: 移动技术网 > IT编程>开发语言>c# > C#模式画刷HatchBrush用法实例

C#模式画刷HatchBrush用法实例

2019年07月18日  | 移动技术网IT编程  | 我要评论
本文实例讲述了c#模式画刷hatchbrush用法。分享给大家供大家参考。具体如下: using system; using system.collection

本文实例讲述了c#模式画刷hatchbrush用法。分享给大家供大家参考。具体如下:

using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.text;
using system.windows.forms;
using system.drawing.drawing2d;
namespace windowsapplication2
{
  public partial class form7 : form
  {
    public form7()
    {
      initializecomponent();
    }
    private void button1_click(object sender, eventargs e)
    {
      try
      {
        hatchbrush hat = new hatchbrush(hatchstyle.divot, color.darkblue, color.white);
        graphics formgraphics = this.creategraphics();
        formgraphics.fillrectangle(hat, new rectanglef(90.0f, 110.0f, 100, 100));
        formgraphics.dispose();
      }
      catch (system.io.filenotfoundexception)
      {
        messagebox.show("there was an error opening the bitmap." + "please check the path.");
      }
    }
    private void form7_load(object sender, eventargs e)
    {
    }
  }
}

希望本文所述对大家的c#程序设计有所帮助。

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网