Compartir a través de


Cómo: Crear un formulario Windows Forms con forma

En este ejemplo se le da a un formulario una forma elíptica capaz de ir cambiando de tamaño con él.

Ejemplo

 Protected Overrides Sub OnPaint( _
ByVal e As System.Windows.Forms.PaintEventArgs)
     Dim shape As New System.Drawing.Drawing2D.GraphicsPath
     shape.AddEllipse(0, 0, Me.Width, Me.Height)
     Me.Region = New System.Drawing.Region(shape)
 End Sub
protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
{
    System.Drawing.Drawing2D.GraphicsPath shape = new System.Drawing.Drawing2D.GraphicsPath();
    shape.AddEllipse(0, 0, this.Width, this.Height);
    this.Region = new System.Drawing.Region(shape);
}
protected:
    virtual void OnPaint(
        System::Windows::Forms::PaintEventArgs^ e) override
    {
        System::Drawing::Drawing2D::GraphicsPath^ shape =
            gcnew System::Drawing::Drawing2D::GraphicsPath();
        shape->AddEllipse(0, 0, this->Width, this->Height);
        this->Region = gcnew System::Drawing::Region(shape);
    }

Compilar el código

Para este ejemplo se necesita:

En este ejemplo se reemplaza el método OnPaint para cambiar la forma del formulario. Para utilizar este código, copie la declaración del método y el código de dibujo contenido en el método.

Vea también

Referencia

OnPaint

Region

System.Drawing

AddEllipse

Region

Otros recursos

Introducción a la programación de gráficos