方法: ソリッド ブラシを作成する
この例では、SolidBrush オブジェクトを作成します。 このオブジェクトは、図形を塗りつぶすための Graphics オブジェクトによって使用されます。
例
System::Drawing::SolidBrush^ myBrush =
gcnew System::Drawing::SolidBrush(System::Drawing::Color::Red);
System::Drawing::Graphics^ formGraphics;
formGraphics = this->CreateGraphics();
formGraphics->FillEllipse(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.FillEllipse(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.FillEllipse(myBrush, New Rectangle(0, 0, 200, 300))
myBrush.Dispose()
formGraphics.Dispose()
堅牢なプログラミング
使用が完了したら、ブラシ オブジェクトなどのシステム リソースを使用するオブジェクトに対して Dispose を呼び出す必要があります。
関連項目
- SolidBrush
- Brush
- グラフィックスプログラミング入門
- GDI+ におけるブラシと塗りつぶされた図形
- 図形の塗りつぶしにブラシを使用する
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET Desktop feedback