C#怎么写一个圆形或者椭圆型的自定义控件

在C#中我新建一个控件库,控件都是正方形的 怎么才能变成一个其他形状的呢?~请不吝赐教

开发的新的控件,一般继承自Control,重写OnPaint方法;还要自己写添加事件、处理消息等等。这样的控件,对应你的业务可以达到很好的效果,功能最灵活。同时对开发人员要求也最高,一般要了解图形绘制GDI+以及API的一些知识。比如,我们需要一个类似Label的控件,但是不需要Label那么多的属性和方法。那么就自己开发一个类似Label的自定义控件。
如下代码:直接继承自Control,其它代码会自动生成好。
[csharp] view plaincopyprint?
[ToolboxItem(true)]
public partial class CustomClassifyLabelItem : Control
{
private Color mColorOut = Color.FromArgb(255, 137, 37);

private StringFormat format;

private Color textColor;

private Font strFormat = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(134)));

public StringFormat Format
{
get
{
if (format == null)
{
format = new StringFormat();

format.Alignment = StringAlignment.Center;

format.LineAlignment = StringAlignment.Center;

format.FormatFlags = StringFormatFlags.NoWrap;

format.Trimming = StringTrimming.EllipsisCharacter;
}

return format;
}
}

public Color TextColor
{
get
{
{
textColor = Color.FromArgb(22, 95, 162);
}

return textColor;
}
}

public CustomClassifyLabelItem()
{
InitializeComponent();

this.MouseEnter += new EventHandler(UCSelectClassifyItem_MouseEnter);

this.MouseLeave += new EventHandler(UCSelectClassifyItem_MouseLeave);
}

void UCSelectClassifyItem_MouseLeave(object sender, EventArgs e)
{
strFormat = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(134)));

Invalidate();
}

void UCSelectClassifyItem_MouseEnter(object sender, EventArgs e)
{
strFormat = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(134)));

Invalidate();
}

protected override void OnPaint(PaintEventArgs pe)
{
base.OnPaint(pe);

Graphics graphics = pe.Graphics;

using (SolidBrush b = new SolidBrush(TextColor))
{
graphics.DrawString(this.Text, strFormat, b, new Rectangle(0, 0, this.Width, this.Height), Format);
}

graphics.Dispose();
}
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-01-25
自己重写控件的OnPaint方法,或者贴图,不过不管哪种方法都很麻烦,即使使用WPF做,也很麻烦,需要自己写控件模版,如果控件是按钮那种有动态效果的,那就更麻烦了,所以还是建议少做这种事情。
第2个回答  2010-01-25
C#下有个开源项目叫CircleDock 他是教你怎么做圆形界面的.
你搜搜CircleDock0.9.2Alpha8.2 这个名称. 原理不难 看看它的源码是怎么实现就可以了.
第3个回答  2010-01-26
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}

protected override void OnPaint(PaintEventArgs e)
{
this.Size = new Size(100, 200);
Graphics g = e.Graphics;
g.FillEllipse(new SolidBrush(base.BackColor), 0.0f, 0.0f, 100, 200);
g.DrawEllipse(new Pen(Color.Black,1), 0.0f, 0.0f, 99, 199);
}
}

}

简单的,重写OnPaint本回答被网友采纳
第4个回答  2010-01-25
GraphicsPath myPath = new GraphicsPath();
myPath.AddEllipse(0, 0, 50, 50);

this.button1.Region = new Region(myPath);

用这个就行了,想要什么形状就什么形状

C#怎么写一个圆形或者椭圆型的自定义控件
那么就自己开发一个类似Label的自定义控件。如下代码:直接继承自Control,其它代码会自动生成好。[csharp] view plaincopyprint?[ToolboxItem(true)]public partial class CustomClassifyLabelItem : Control { private Color mColorOut = Color.FromArgb(255, 137, 37);private StringFormat format;private...

...在 C# 中绘制直线、圆弧、椭圆和矩形等形状
此代码示例的输出如下所示。接下来是绘制圆弧的方法。以下是C#中绘制圆弧的代码示例。下面是绘制圆弧的输出结果。最后,让我们看看如何在C#中绘制矩形。以下是C#中绘制矩形的代码示例。下面是绘制矩形的输出结果。至此,您已了解如何在C#中绘制直线、椭圆、圆弧和矩形。如需更多产品咨询,欢迎联系我们或加入...

C#中怎么重写button让button显示为圆形
roundRect = new Rectangle(0,0,this.Width,this.Height);\/\/设置画椭圆区域 rectangle = new Rectangle(this.Left,this.Top,this.Width,this.Height);\/\/设定按钮显示位置和最大响应范围,只能是矩形 buttonCenter = new Point ((int)this.Width\/2 , (int)this.Height\/2); \/\/绘制立体效果中心 }...

求C#编写的一个自定义椭圆形button
添加到工具栏中~随便你用在任何地方 而且可以选择任意方向圆角,和颜色渐变的效果。我一直在用,非常的不错要的话分给我~邮箱告诉我发给你 WPF本人没用过~这个任何的版本都能用不给分对不起我 参考资料:C# 控件重绘

C#GDI绘制圆形图片
1、创建一个椭圆路径:GraphicsPath gp = new GraphicsPath();gp.AddEllipse(new Rectangle(0,0,100,100));\/\/假设100为正方形的边长 2、将该路径设置到图片的绘图场景中作为剪裁区域:using(Graphics g = Graphics.FromImage(bm)){ \/\/假设bm就是你要绘制的正方形位图,已创建好 g.SetClip(gp);...

C#GDI绘制圆形图片
1、创建一个椭圆路径:GraphicsPath gp = new GraphicsPath();gp.AddEllipse(new Rectangle(0,0,100,100)); \/\/假设100为正方形的边长 2、将该路径设置到图片的绘图场景中作为剪裁区域:using(Graphics g = Graphics.FromImage(bm)){ \/\/假设bm就是你要绘制的正方形位图,已创建好 g.SetClip(gp)...

寻高人!小弟想用C#做一个心形的窗体!
一、自定义窗体,一般为规则的图形,如圆、椭圆等。做法:重写Form1_Paint事件(Form1是窗体的名字),最简单的一种情况如下:System.Drawing.Drawing2D.GraphicsPath shape = new System.Drawing.Drawing2D.GraphicsPath();shape.AddEllipse(0,0,this.Height, this.Width);this.Region = new Region(...

C#如何自定义窗体样式?
你用过 Graphics 类吗?如果知道的话就可以改变窗体的形状了。在窗体的paint事件中用Graphics 类就可以办到:比如说要做一个椭圆型的窗体的话就是这样的代码:System.Drawing.Drawing2D.GraphicsPath shrap = new System.Drawing.Drawing2D.GraphicsPath();shrap.AddEllipse(0,0,this.width,this.height);...

c#如何画一个椭圆 使椭圆的大小随窗体的大小改变而改变 谢谢! 能不...
在你的窗体里加入以下代码:private int x = 0;private int y = 0;private void TempDrawEllipse(){ System.Drawing.Graphics g = this.CreateGraphics();System.Drawing.Pen p = new Pen(this.BackColor,2);g.DrawEllipse(p,0,0,x,y);x = this.ClientSize.Width;y = this.ClientSize....

C#开发软件这个按钮如何变成这样?写什么样式..
在属性FlatStyle,选择standard即可。

相似回答