FormBorderStyle.Sizable : FormBorderStyle « System.Windows.Forms « C# / C Sharp by API






FormBorderStyle.Sizable

 
using System;
using System.Drawing;
using System.ComponentModel;
using System.Windows.Forms;

public class FormSizable : System.Windows.Forms.Form
{
    public FormSizable()
    {
        this.MaximizeBox = true;
        this.FormBorderStyle = FormBorderStyle.Sizable;
    }

    static void Main()
    {
        Application.Run(new FormSizable());
    }
}

   
  








Related examples in the same category

1.FormBorderStyle.FixedDialog