winform中怎么绘制圆角选项卡?
发布网友
发布时间:2022-05-03 11:30
我来回答
共3个回答
热心网友
时间:2022-06-19 12:33
先看下这个效果
给你个思路:
重写TabControl控件,重载OnPaint方法
public class CustomTabControl : TabControl
{
//......
protected override void OnPaint(PaintEventArgs e)
{
this.PaintTransparentBackground(e.Graphics, base.ClientRectangle);
this.PaintAllTheTabs(e);
this.PaintTheTabPageBorder(e);
this.PaintTheSelectedTab(e);
}
//......
}
热心网友
时间:2022-06-19 12:33
用圆规就行
热心网友
时间:2022-06-19 12:34
好像不行,自己写控件