【问题标题】:how to make round button for another method如何为另一种方法制作圆形按钮
【发布时间】:2015-02-15 12:58:07
【问题描述】:
public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            button1.Size = new Size(50, 50);
            GraphicsPath Gcircle = new GraphicsPath();
            Gcircle.AddEllipse(0, 0, 50, 50);
            this.button1.Region = new Region(Gcircle);
        }

我想做一个漂亮的按钮,但是上面方法的按钮很丑 还有另一种方法吗???

【问题讨论】:

标签: c#


【解决方案1】:

如果这是您需要的,请尝试此链接 www.codeproject.com/Articles/5082/Round-Button-in-C

www.codeproject.com/Articles/5582/Elongated-Buttons-Rounded-cornered-Groupboxes-and

www.codeproject.com/Articles/15730/RoundButton-Windows-Control-Ever-Decreasing-Circle

【讨论】:

    猜你喜欢
    • 2017-03-04
    • 2016-01-30
    • 2012-05-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多