在C#中使用圆形边框的表单?

时间:2012-05-20 14:25:24

标签: c# visual-c#-express-2010 formborderstyle

我正在使用此代码使表单没有边框样式:

this.FormBorderStyle = FormBorderStyle.None;

我需要在表单上创建圆角。

有简单的方法吗?我该怎么做?

3 个答案:

答案 0 :(得分:2)

看看这个:http://msdn.microsoft.com/en-us/library/system.windows.forms.control.region.aspx

Form类继承自Control类,因此请尝试在 Form的Region属性的链接上执行相同的示例(当然,在表单事件上执行此操作):

    // This method will change the square button to a circular button by 
// creating a new circle-shaped GraphicsPath object and setting it 
// to the RoundButton objects region.
private void roundButton_Paint(object sender, 
    System.Windows.Forms.PaintEventArgs e)
{

    System.Drawing.Drawing2D.GraphicsPath buttonPath = 
        new System.Drawing.Drawing2D.GraphicsPath();

    // Set a new rectangle to the same size as the button's 
    // ClientRectangle property.
    System.Drawing.Rectangle newRectangle = roundButton.ClientRectangle;

    // Decrease the size of the rectangle.
    newRectangle.Inflate(-10, -10);

    // Draw the button's border.
    e.Graphics.DrawEllipse(System.Drawing.Pens.Black, newRectangle);

    // Increase the size of the rectangle to include the border.
    newRectangle.Inflate( 1,  1);

    // Create a circle within the new rectangle.
    buttonPath.AddEllipse(newRectangle);

    // Set the button's Region property to the newly created 
    // circle region.
    roundButton.Region = new System.Drawing.Region(buttonPath);

}

答案 1 :(得分:1)

我知道这个问题已经回答了,我想补充一个替代和愚蠢但不是真正推荐的做法,因为你的问题不会将答案限制为代码......

  • 创建一个空白的方形图像,背景颜色为填充,然后将左上角的圆角擦除为透明,将其重复到所有角落
  • 将非常不可能的颜色设置为表单背景颜色
  • 将此颜色设置为表单上的TransparencyKey
  • 将图片添加为PictureBox并将其放置到相应的角落

中提琴!

答案 2 :(得分:0)

    public static void RoundBorderForm(Form frm)
    {

        Rectangle Bounds = new Rectangle(0, 0, frm.Width, frm.Height);
        int CornerRadius = 20;
        System.Drawing.Drawing2D.GraphicsPath path = new System.Drawing.Drawing2D.GraphicsPath();
        path.AddArc(Bounds.X, Bounds.Y, CornerRadius, CornerRadius, 180, 90);
        path.AddArc(Bounds.X + Bounds.Width - CornerRadius, Bounds.Y, CornerRadius, CornerRadius, 270, 90);
        path.AddArc(Bounds.X + Bounds.Width - CornerRadius, Bounds.Y + Bounds.Height - CornerRadius, CornerRadius, CornerRadius, 0, 90);
        path.AddArc(Bounds.X, Bounds.Y + Bounds.Height - CornerRadius, CornerRadius, CornerRadius, 90, 90);
        path.CloseAllFigures();

        frm.Region = new Region(path);
        frm.Show();
    }