winform创建不规则窗体的方法
来源:本站原创|时间:2020-01-10|栏目:C#教程|点击: 次
本文实例讲述了winform创建不规则窗体的方法。分享给大家供大家参考。具体如下:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Microsoft.Win32; using System.Drawing.Drawing2D; using System.IO; namespace WindowsApplication2 { public partial class Form3 : Form { public Form3() { InitializeComponent(); this.FormBorderStyle = FormBorderStyle.None; ColorConverter colorconvert = new ColorConverter(); this.BackColor = (Color)colorconvert.ConvertFromString("window"); this.TransparencyKey = (Color)colorconvert.ConvertFromString("window"); } private void button1_Click(object sender, EventArgs e) { this.Close(); } protected override void OnPaint(PaintEventArgs e) { Graphics g = e.Graphics; Rectangle mainRect = new Rectangle(0, 0, 695, 278); Region mainRegion = new Region(mainRect); e.Graphics.SetClip(mainRegion, CombineMode.Replace); //设置窗体的外观形式 Point point1 = new Point(0, 32); Point point2 = new Point(9, 20); Point point3 = new Point(21, 13); Point point4 = new Point(34, 9); // 创建一个以点为元素的数组 Point[] curvePoints = { point1, point2, point3, point4 }; // 创建一个GraphicsPath 对象并添加一条曲线 GraphicsPath gPath = new GraphicsPath(); gPath.AddCurve(curvePoints, 0, 3, 0.8f); gPath.AddLine(36, 9, 378, 9); point1.X = 378; point1.Y = 9; point2.X = 387; point2.Y = 5; point3.X = 394; point3.Y = 0; Point[] curvePoints2 = { point1, point2, point3 }; gPath.AddCurve(curvePoints2, 0, 2, 0.8f); gPath.AddLine(394, 0, 0, 0); Region rg = new Region(gPath); e.Graphics.ExcludeClip(rg); //可以为任意图片 string str = Directory.GetCurrentDirectory() + "\\2.png"; Image img = Image.FromFile(str); e.Graphics.DrawImage(img, 0, 0, 695, 278); // 重设剪切好的区域 e.Graphics.ResetClip(); } } }
希望本文所述对大家的C#程序设计有所帮助。
上一篇:Winform窗体效果实例分析
栏 目:C#教程
下一篇:C#线程队列用法实例分析
本文标题:winform创建不规则窗体的方法
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/6999.html
您可能感兴趣的文章
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10WinForm实现仿视频播放器左下角滚动新闻效果的方法
- 01-10C#实现Winform中打开网页页面的方法
- 01-10winform实现创建最前端窗体的方法
- 01-10WinForm实现自定义右下角提示效果的方法
- 01-10.net2.0+ Winform项目实现弹出容器层
- 01-10winform 实现控制输入法
- 01-10C#动态创建button的方法
- 01-10WinForm实现程序一段时间不运行自动关闭的方法
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-10C#中split用法实例总结
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10SublimeText编译C开发环境设置
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 04-02jquery与jsp,用jquery
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10delphi制作wav文件的方法
- 08-05织梦dedecms什么时候用栏目交叉功能?