【转】用户自定义控件(含源代码)-圆角Panel

圆角Panel代码

 

复制代码
   
   
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;

namespace myControlLibrary
{
public partial class RoundPanel : System.Windows.Forms.Panel
{
public RoundPanel()
{
InitializeComponent();

this .Padding = new System.Windows.Forms.Padding( 0 , 0 , 0 , 0 );
this .Margin = new System.Windows.Forms.Padding( 0 , 0 , 0 , 0 );
this .BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
}


// 圆角
// ===============================================================================================
private int _Radius; // 圆角弧度

/// <summary> 圆角弧度(0为不要圆角) </summary>
[Browsable( true )]
[Description(
" 圆角弧度(0为不要圆角) " )]
public int _setRoundRadius
{
get
{
return _Radius;
}
set
{
if (value < 0 ) { _Radius = 0 ; }
else { _Radius = value; }
base .Refresh();
}
}


// 圆角代码
public void Round(System.Drawing.Region region)
{
// -----------------------------------------------------------------------------------------------
// 已经是.net提供给我们的最容易的改窗体的属性了(以前要自己调API)
System.Drawing.Drawing2D.GraphicsPath oPath = new System.Drawing.Drawing2D.GraphicsPath();
int x = 0 ;
int y = 0 ;
int thisWidth = this .Width;
int thisHeight = this .Height;
int angle = _Radius;
if (angle > 0 )
{
System.Drawing.Graphics g
= CreateGraphics();
oPath.AddArc(x, y, angle, angle,
180 , 90 ); // 左上角
oPath.AddArc(thisWidth - angle, y, angle, angle, 270 , 90 ); // 右上角
oPath.AddArc(thisWidth - angle, thisHeight - angle, angle, angle, 0 , 90 ); // 右下角
oPath.AddArc(x, thisHeight - angle, angle, angle, 90 , 90 ); // 左下角
oPath.CloseAllFigures();
Region
= new System.Drawing.Region(oPath);
}
// -----------------------------------------------------------------------------------------------
else
{
oPath.AddLine(x
+ angle, y, thisWidth - angle, y); // 顶端
oPath.AddLine(thisWidth, y + angle, thisWidth, thisHeight - angle); // 右边
oPath.AddLine(thisWidth - angle, thisHeight, x + angle, thisHeight); // 底边
oPath.AddLine(x, y + angle, x, thisHeight - angle); // 左边
oPath.CloseAllFigures();
Region
= new System.Drawing.Region(oPath);
}
}
// ===============================================================================================


public RoundPanel(IContainer container)
{
container.Add(
this );

InitializeComponent();
}

protected override void OnPaint(System.Windows.Forms.PaintEventArgs pe)
{
base .OnPaint(pe);
Round(
this .Region); // 圆角
}

protected override void OnResize(EventArgs eventargs)
{
base .OnResize(eventargs);
base .Refresh();
}
}
}
复制代码
个性签名:做要做好,做到不三不四不如不做。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值