C#通过重写Panel改变边框颜色与宽度的方法
本文实例讲述了C#通过重写Panel改变边框颜色与宽度的方法。分享给大家供大家参考。具体实现方法如下:
using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; using System.ComponentModel; using System.Windows.Forms; using System.Drawing; namespace ImageStudio { public class PanelEx : System.Windows.Forms.Panel { [DllImport("user32.dll")] private static extern IntPtr GetWindowDC(IntPtr hwnd); [DllImport("user32.dll")] private static extern int ReleaseDC(IntPtr hwnd, IntPtr hdc); private Color _borderColor = Color.Black; private int _borderWidth = 1; // // 摘要: // 获取或设置控件的边框颜色。 // // 返回结果: // 控件的边框颜色 System.Drawing.Color。默认为 System.Drawing.Color.Black // 属性的值。 [Description("组件的边框颜色。"), Category("Appearance")] public Color BorderColor { get { return _borderColor; } set { _borderColor = value; this.Invalidate(); } } // // 摘要: // 获取或设置控件的边框宽度。 // // 返回结果: // 控件的边框宽度 int。默认为 1 // 属性的值。 [Description("组件的边框宽度。"), Category("Appearance")] public int BorderWidth { get { return _borderWidth; } set { _borderWidth = value; this.Invalidate(); } } public PanelEx() { SetStyle(ControlStyles.DoubleBuffer, true); SetStyle(ControlStyles.AllPaintingInWmPaint, false); SetStyle(ControlStyles.ResizeRedraw, true); SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.SupportsTransparentBackColor, true); this.Paint+=new PaintEventHandler(PanelEx_Paint); } private void PanelEx_Paint(object sender, PaintEventArgs e) { if (this.BorderStyle == BorderStyle.FixedSingle) { IntPtr hDC = GetWindowDC(this.Handle); Graphics g = Graphics.FromHdc(hDC); ControlPaint.DrawBorder( g, new Rectangle(0, 0, this.Width, this.Height), _borderColor, _borderWidth, ButtonBorderStyle.Solid, _borderColor, _borderWidth, ButtonBorderStyle.Solid, _borderColor, _borderWidth, ButtonBorderStyle.Solid, _borderColor, _borderWidth, ButtonBorderStyle.Solid); g.Dispose(); ReleaseDC(Handle, hDC); } } } }
希望本文所述对大家的C#程序设计有所帮助。
上一篇:C#实现清空回收站的方法
栏 目:C#教程
下一篇:WinForm实现仿视频播放器左下角滚动新闻效果的方法
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/7048.html
您可能感兴趣的文章
- 01-10C#通过反射获取当前工程中所有窗体并打开的方法
- 01-10C#通过Semaphore类控制线程队列的方法
- 01-10C#通过正则表达式实现提取网页中的图片
- 01-10在C#的类或结构中重写ToString方法的用法简介
- 01-10C#中重载与重写区别分析
- 01-10详解C#中通过委托来实现回调函数功能的方法
- 01-10C#通过html调用WinForm的方法
- 01-10C#重写DataGridView
- 01-10SMTP客户端未通过身份验证等多种错误解决方案分享
- 01-10C# 函数覆盖总结学习(推荐)
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 01-10delphi制作wav文件的方法
- 04-02jquery与jsp,用jquery
- 01-11ajax实现页面的局部加载
- 01-10SublimeText编译C开发环境设置
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 08-05DEDE织梦data目录下的sessions文件夹有什