Linux 拨号vps windows公众号手机端

winform怎么设置按钮形状

lewis 6年前 (2019-05-19) 阅读数 8 #网络运维
文章标签 WinForm

在WinForm中设置按钮的形状可以通过自定义按钮控件的方式来实现。以下是一种常用的方法:

  1. 创建一个自定义按钮控件类,继承自Button类:
using System;
using System.Drawing;
using System.Windows.Forms;

public class RoundButton : Button
{
    protected override void OnPaint(PaintEventArgs pevent)
    {
        GraphicsPath path = new GraphicsPath();
        path.AddEllipse(0, 0, ClientSize.Width, ClientSize.Height);
        this.Region = new System.Drawing.Region(path);
        base.OnPaint(pevent);
    }
}
  1. 在Form中使用自定义按钮控件:
RoundButton roundButton = new RoundButton();
roundButton.Text = "Round Button";
roundButton.Size = new Size(100, 100);
this.Controls.Add(roundButton);

通过以上步骤,就可以创建一个圆形的按钮控件并在Form中使用了。您也可以根据具体需求,自定义不同形状的按钮控件。

版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门