问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

如何改变c#button控件的形状

发布网友 发布时间:2022-05-14 02:02

我来回答

2个回答

热心网友 时间:2023-11-22 14:16

ImageButton是asp.net中的控件。如果说是winform,可以用普通的button 设置背景图和按钮的显示格式。也可以用imagebox控件。

using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Text;

namespace 自定义水晶按钮
{
/// <summary>
/// UserControl1 的摘要说明。
/// </summary>
public class TestButton : Button
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;

private enum MouseActionType//定义鼠标的点击类型
{
None,
Hover,
Click
}

private MouseActionType mouseAction;
private ImageAttributes imgAttr = new ImageAttributes();
private Bitmap buttonBitmap;
private Rectangle buttonBitmapRectangle;

public TestButton()
{
// 该调用是 Windows.Forms 窗体设计器所必需的。
InitializeComponent();

// TODO: 在 InitComponent 调用后添加任何初始化

mouseAction = MouseActionType.None;

//应用双缓冲技术是画面不闪烁
this.SetStyle(ControlStyles.AllPaintingInWmPaint |
ControlStyles.DoubleBuffer |
ControlStyles.UserPaint, true);

//修改默认的字体,背景色,大小
this.Font = new Font("宋体", 12, FontStyle.Bold);
this.BackColor = Color.DarkTurquoise;
this.Size = new Size(100, 40);

}

/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if( components != null )
components.Dispose();
}
base.Dispose( disposing );
}

#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器
/// 修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
}
#endregion

private GraphicsPath GetGraphicsPath(Rectangle rc, int r)
{
int x = rc.X, y = rc.Y, w = rc.Width, h = rc.Height;
GraphicsPath path = new GraphicsPath();
path.AddArc(x, y, r, r, 180, 90); //左上角的椭圆
path.AddArc(x + w - r, y, r, r, 270, 90);//右上角的椭圆
path.AddArc(x + w - r, y + h - r, r, r, 0, 90);//左下角的椭圆
path.AddArc(x, y + h - r, r, r, 90, 90);//右下角的椭圆
path.CloseFigure();
return path;
}

protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
//g.Clear(Color.White);
g.Clear(SystemColors.Control);//清空画布的三维颜色
Color clr = this.BackColor;
int shadowOffset = 8;
int btnOffset = 0;
switch (mouseAction)
{
case MouseActionType.Click:
shadowOffset = 4;
clr = Color.DeepSkyBlue;
btnOffset = 2;
break;
case MouseActionType.Hover:
clr = Color.DeepSkyBlue;
break;
}
g.SmoothingMode = SmoothingMode.AntiAlias;

///
/// 创建按钮本身的图形
///
Rectangle rc = new Rectangle(btnOffset, btnOffset, this.ClientSize.Width - 8 - btnOffset, this.ClientSize.Height - 8 - btnOffset);
GraphicsPath path1 = this.GetGraphicsPath(rc, 20);

//一个起始点和一个终点 用渐变的颜色来填充
LinearGradientBrush br1 = new LinearGradientBrush(new Point(0, 0), new Point(0, rc.Height + 6), clr, Color.White);

///
/// 创建按钮阴影
///
Rectangle rc2 = rc;
rc2.Offset(shadowOffset, shadowOffset);
GraphicsPath path2 = this.GetGraphicsPath(rc2, 20);
PathGradientBrush br2 = new PathGradientBrush(path2);
br2.CenterColor = Color.Black;
br2.SurroundColors = new Color[] {SystemColors.Control};
//为了更*真,我们将渐变结束颜色设定为窗体前景颜色,可以根据窗口的前景颜色适当调整

///
/// 创建按钮顶部白色渐变
///
Rectangle rc3 = rc;
rc3.Inflate(-5, -5);
rc3.Height = 15;
GraphicsPath path3 = GetGraphicsPath(rc3, 20);

LinearGradientBrush br3 = new LinearGradientBrush(rc3, Color.FromArgb(255, Color.White), Color.FromArgb(0, Color.White), LinearGradientMode.Vertical);

///
/// 绘制图形
///
g.FillPath(br2, path2);//绘制阴影
g.FillPath(br1, path1); //绘制按钮
g.FillPath(br3, path3); //绘制顶部白色泡泡

///
///设定内存位图对象,进行二级缓存绘图操作 双缓冲
///
buttonBitmapRectangle = new Rectangle(rc.Location, rc.Size);
buttonBitmap = new Bitmap(buttonBitmapRectangle.Width, buttonBitmapRectangle.Height);
Graphics g_bmp = Graphics.FromImage(buttonBitmap);
g_bmp.SmoothingMode = SmoothingMode.AntiAlias;
g_bmp.FillPath(br1, path1);
g_bmp.FillPath(br3, path3);

///
///将region赋值给button
Region rgn = new Region(path1);
rgn.Union(path2);
this.Region = rgn;

///
/// 绘制按钮的文本
///
GraphicsPath path4 = new GraphicsPath();

RectangleF path1bounds = path1.GetBounds();

Rectangle rcText = new Rectangle((int)path1bounds.X + btnOffset, (int)path1bounds.Y + btnOffset, (int)path1bounds.Width, (int)path1bounds.Height);

StringFormat strformat = new StringFormat();
strformat.Alignment = StringAlignment.Center;
strformat.LineAlignment = StringAlignment.Center;
path4.AddString(this.Text, this.Font.FontFamily, (int)this.Font.Style, this.Font.Size, rcText, strformat);

Pen txtPen = new Pen(this.ForeColor , 1);
g.DrawPath(txtPen, path4);
g_bmp.DrawPath(txtPen, path4);
}

//重写一系列事件
protected override void OnMouseDown(MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
this.mouseAction = MouseActionType.Click;
this.Invalidate();
}
base.OnMouseDown(e);
}

protected override void OnMouseUp(MouseEventArgs e)
{
this.mouseAction = MouseActionType.Hover;
this.Invalidate();
base.OnMouseUp(e);
}

protected override void OnMouseHover(EventArgs e)
{
this.mouseAction = MouseActionType.Hover;
this.Invalidate();
base.OnMouseHover(e);
}

protected override void OnMouseEnter(EventArgs e)
{
this.mouseAction = MouseActionType.Hover;
this.Invalidate();
base.OnMouseEnter(e);
}

protected override void OnMouseLeave(EventArgs e)
{
this.mouseAction = MouseActionType.None;
this.Invalidate();
base.OnMouseLeave(e);
}
}
}

热心网友 时间:2023-11-22 14:16

通过设置Button.Region来修改形状。比如:
protected override void OnClick(EventArgs e)
{
base.OnClick(e);
GraphicsPath path=new GraphicsPath();
path.AddEllipse(this.button1.ClientRectangle);
Region reg = new Region(path);
this.button1.Region=reg;
}
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
折儿是什么意思? 什么叫饭折? 饭折是什么意思 私募股权基金6种模式 私募投资业务管理系统 火山仙泉天然矿泉水产品特点 用苏打片带吃带洗真的能生男孩吗 凡山天然苏打水怎么样 美的面包机和面要多久 美的面包机和面的时间要多长 美的面包机怎么用手动操作 戒指里面刻的京奥PD990是什么意思呀 研究生复试简历会查吗 盐城京奥环保滤料有限公司怎么样? 控件Button和RepeatButton有什么区别啊 福建京奥通信技术有限公司怎么样? 一个手机号码能可以开通几个码? C# 关于button 控件的所有问题 在线等 多给分 用户控件中button控件怎么触发事件刷新主页面 北京市京奥弹簧厂怎么样? button控件 辽宁京奥招投标代理有限公司怎么样? 创建一个窗口,里面有一个button控件,当点击botton时,弹出另外一个窗口,怎么实现? 只要标有京奥pd990就是真的钯金吗 Java如何创建多个Button控件 C#Button控件 Button控件的介绍 JA;2008;京奥注册过商标吗?还有哪些分类可以注册? 在书店买了本书没仔细看后来后来发现扉页上有个样书专用章,请问这书能正常使用不能? 外国人怎样评价北京奥运会 侠盗猎车手罪恶都市黑花(不是黑桃)任务第三个视频 如何使用button控件的command事件相应 用户按钮单击动作是什么 广州京奥旅行社有限公司怎么样? 后台定义的button控件,为什么没有Onclick属性 同一个手机号,可不可以同时注册两个? 一个手机号可以注册几个? 一个手机号可以同时绑定两个吗? 一个手机号同时可以注册几个 考研复试准备哪些资料 一个手机号注册两个那两个都可以用吗 同一个人的手机号和qq号分别能申请两个吗? 链轮轮毂厚度怎么算 已知链轮齿数85,节距25.4,滚子外径15.88,算出齿顶圆最大和最小值,具体选用哪个值? 给我推荐一些好听的歌? 求解,输送链已经选好尺寸,输送链轮的具体参数怎么计算呢? 有什么好听的歌名字要歌名古怪的 本村村委自查情况报告? 谁给介绍点好听的歌?名字 用CSS和DIV如何实现这种效果,15分 pubg亚马逊账号会员多少钱 洛奇MML乐谱是什么