如何改变按钮的形状

时间:2010-03-03 08:58:50

标签: c#

我想知道如何在C#中制作按钮形状圆圈? 感谢

4 个答案:

答案 0 :(得分:0)

看看这样的事情

Custom Button with Color and Shape

答案 1 :(得分:0)

如果您使用WPF,那么这相当简单。

如果您使用的是WinForms,那么这就更难了,因为您必须覆盖按钮绘制方法,但仍然可以。

答案 2 :(得分:0)

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

namespace shapes
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            GraphicsPath gp = new GraphicsPath();
            gp.AddEllipse(0, 0, 100, 100);
            this.Region = new Region(gp);
        }
    }
}

答案 3 :(得分:0)

我使用PictureBox成功制作了带圆圈的自定义按钮,并在其上实现了Click(或MouseClick)操作:

enter image description here