在WinForm中設置按鈕的形狀可以通過自定義按鈕控件的方式來實現。以下是一種常用的方法:
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);
}
}
RoundButton roundButton = new RoundButton();
roundButton.Text = "Round Button";
roundButton.Size = new Size(100, 100);
this.Controls.Add(roundButton);
通過以上步驟,就可以創建一個圓形的按鈕控件并在Form中使用了。您也可以根據具體需求,自定義不同形狀的按鈕控件。