C#通过重写Panel改变边框颜色与宽度的方法
作者:我心依旧 时间:2021-07-09 05:57:52
本文实例讲述了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#,Panel,边框
0
投稿
猜你喜欢
java实现一个简单TCPSocket聊天室功能分享
2022-06-11 20:04:36
C#中类与接口的区别个人总结
2023-05-08 17:29:40
Android Activity生命周期调用的理解
2023-05-13 14:15:42
Java线程组与未处理异常实例分析
2021-12-01 12:21:08
Intellij IDEA根据maven依赖名查找它是哪个pom.xml引入的(图文详解)
2023-07-20 07:49:35
C#处理猜拳问题的简单实例(非窗体)
2021-08-01 18:58:22
Java的Struts框架中登陆功能的实现和表单处理器的使用
2022-05-20 23:44:45
android studio 安装完成ButterKnife插件却无法使用(解决方案)
2023-03-14 17:54:58
Java中检查字符串是否以特定字符结尾
2021-08-07 20:04:47
Java设计模式的事件模型详解
2023-11-29 04:47:08
IDEA下Maven的pom文件导入依赖出现Auto build completed with errors的问题
2023-04-06 07:23:31
将InputStream转化为base64的实例
2023-04-24 02:30:59
Java中的 FilterInputStream简介_动力节点Java学院整理
2023-01-21 17:18:56
Android项目中引入aar包的正确方法介绍
2021-09-01 20:10:16
Audio Source组件及相关API
2023-07-07 14:22:37
Java多种经典排序算法(含动态图)
2023-09-24 00:45:02
C#多线程学习之Thread、ThreadPool、Task、Parallel四者区别
2023-08-27 05:32:14
解决SpringBoot web项目启动后立即关闭的问题
2023-07-26 02:33:37
kotlin基础教程之类和继承
2023-09-24 07:55:53
java.lang.ExceptionInInitializerError异常的解决方法
2023-01-13 04:23:16