WinForm中创建不规则窗体

  using System; 

using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;

namespace MyNameSpace
{
 /// <summary>
 /// BitmapForm 的摘要说明。
 /// 位图窗体类
 /// </summary>
 public class BitmapRegion
{
  public BitmapRegion()
  {
   // TODO: 在此处添加构造函数逻辑
  }
  
  
  // 创建支持位图区域的控件(button 和 form)
  public static void CreateRegionControl(Control control, Bitmap bitmap)
  {
   //判断是否存在控件和位图
   if(control == null || bitmap == null) return;

   //设置控件大小为位图大小
   control.Width = bitmap.Width;
   control.Height = bitmap.Height;
   
   #region ** 应用 ** 
   //当控件是form时
   if(control is System.Windows.Forms.Form)
   {   
    //强制转换为FORM
    Form form = (Form)control;
    //当FORM的边界FormBorderStyle不为NONE时,应将FORM的大小设置成比位图大小稍大一点
    form.Width = control.Width;
    form.Height = control.Height;
    //没有边界
    form.FormBorderStyle = FormBorderStyle.None;
    //将位图设置成窗体背景图片
    form.BackgroundImage = bitmap;
    //计算位图中不透明部分的边界
    GraphicsPath graphicsPath = CalculateImgPath(bitmap);
    //应用新的区域
    form.Region = new Region(graphicsPath);
   }
   //当控件是button时
   else if(control is System.Windows.Forms.Button)
   {
    //强制转换为 button
    Button button = (Button)control;
    //不显示button text
    button.Text = "";

    //改变 cursor的style
    button.Cursor = Cursors.Hand;
    //设置button的背景图片
    button.BackgroundImage = bitmap;

    //计算位图中不透明部分的边界
    GraphicsPath graphicsPath = CalculateImgPath(bitmap);
    //应用新的区域
    button.Region = new Region(graphicsPath);
   }
   #endregion
   
  }
  
  #region ** 计算位图中不透明部分的边界 ** 
  private static GraphicsPath CalculateImgPath(Bitmap bitmap)
  {
   //创建 GraphicsPath
   GraphicsPath graphicsPath = new GraphicsPath();
   
   //使用左上角的一点的颜色作为我们透明色
   Color colorTransparent = bitmap.GetPixel(0, 0);
   
   //第一个找到点的X
   int colOpaquePixel = 0;
   
   #region ** 偏历所有行(Y方向) ** 
   for(int row = 0; row < bitmap.Height; row ++)
   {
    //重设
    colOpaquePixel = 0;
    //偏历所有列(X方向)
    for(int col = 0; col < bitmap.Width; col ++)
    {
     //如果是不需要透明处理的点则标记,然后继续偏历
     if(bitmap.GetPixel(col, row) != colorTransparent)
     {
      //记录当前
      colOpaquePixel = col;
      
      //建立新变量来记录当前点
      int colNext = col;
      //从找到的不透明点开始,继续寻找不透明点,一直到找到或则达到图片宽度
      for(colNext = colOpaquePixel; colNext < bitmap.Width; colNext ++)
      {
       if(bitmap.GetPixel(colNext, row) == colorTransparent)break;
      }
       
      //将不透明点加到graphics path
      graphicsPath.AddRectangle(new Rectangle(colOpaquePixel, row, colNext - colOpaquePixel, 1));
      // No need to scan the line of opaque pixels just found
      col = colNext;
     }
    }
   }
   #endregion
   
   // Return calculated graphics path
   return graphicsPath;
  }
  #endregion
  
 }
}


-------------------------
不规则窗体创建方法:

1、去掉标题栏,将FormBorderStyle属性设为None
当然你去掉了标题栏也就去掉了它的最大化、最小化、关闭、移动窗体等功能。
为了使程序仍然具有这些功能,我们需在程序中添加一些代码,这样用户就仍然可以像以前一样和程序进行交互。

2、将BackgroundImage属性设置为你创建的位图文件 

3、在Load中写如下代码:
private void Form1_Load(object sender, System.EventArgs e)
{
     BitmapRegion BitmapRegion = new BitmapRegion ();
     BitmapRegion .CreateRagionControl(this,(Bitmap)this.BackgroundImage);
}

4、Ctrl+F5 / Alt+F4  进行测试,一切OK。



---------------------------
//移动窗体

     ... ...

  private bool isDown;
  private System.Drawing.Point pos;
    ... ...


  private void label1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
  {
      if(e.Button == MouseButtons.Left)
      {
          int x = -e.X - label1.Location.X;
          int y = -e.Y - label1.Location.Y;

          pos=new Point(x,y);
          isDown = true;
     }
  }

  private void label1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
  {
     if(isDown)
     {
          Point newPos = Control.MousePosition;
          newPos.Offset(pos.X,pos.Y);
          this.Location = newPos;
     }
  }

  private void label1_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)
  {
        isDown=false;
  }

  //关闭窗体
  private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
  {
      this.Close();
      Application.Exit();
  }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值