Dela via


Anvisningar: Rita en fylld rektangel i ett Windows-formulär

I det här exemplet ritas en fylld rektangel i ett formulär.

Exempel

System::Drawing::SolidBrush^ myBrush =
    gcnew System::Drawing::SolidBrush(System::Drawing::Color::Red);
System::Drawing::Graphics^ formGraphics;
formGraphics = this->CreateGraphics();
formGraphics->FillRectangle(myBrush, Rectangle(0, 0, 200, 300));
delete myBrush;
delete formGraphics;
System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);
System.Drawing.Graphics formGraphics;
formGraphics = this.CreateGraphics();
formGraphics.FillRectangle(myBrush, new Rectangle(0, 0, 200, 300));
myBrush.Dispose();
formGraphics.Dispose();
Dim myBrush As New System.Drawing.SolidBrush(System.Drawing.Color.Red)
Dim formGraphics As System.Drawing.Graphics
formGraphics = Me.CreateGraphics()
formGraphics.FillRectangle(myBrush, New Rectangle(0, 0, 200, 300))
myBrush.Dispose()
formGraphics.Dispose()

Kompilera koden

Du kan inte anropa den här metoden i händelsehanteraren för Load. Det ritade innehållet ritas inte om om formuläret ändras eller döljs av ett annat formulär. Om du vill göra om innehållet automatiskt bör du åsidosätta metoden OnPaint.

Robust programmering

Du bör alltid anropa Dispose på objekt som använder systemresurser, till exempel Brush och Graphics objekt.

Se även