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

C#纹理画刷TextureBrush用法实例

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

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

using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.drawing.drawing2d;
using system.text;
using system.windows.forms;
namespace windowsapplication2
{
  public partial class form6 : form
  {
    public form6()
    {
      initializecomponent();
    }
    private void form6_load(object sender, eventargs e)
    {
    }
    private void button1_click(object sender, eventargs e)
    {
      try
      {
        bitmap image1 = (bitmap)image.fromfile(@"e:/ico/administrator.bmp", true);
        texturebrush texture = new texturebrush(image1);
        texture.wrapmode = system.drawing.drawing2d.wrapmode.tileflipx;
        graphics formgraphics = this.creategraphics();
        formgraphics.fillellipse(texture, 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.");
      }
    }
  }
}

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

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

相关文章:

验证码:
移动技术网