private void Drawarc(PaintEventArgs e)
{
// Create pen.
System.Windows.Media.Pen blackPen = new
System.Windows.Media.Pen(System.Windows.Media.Brushes.Black, 3);
// Create rectangle to bound ellipse.
Microsoft.Xna.Framework.Rectangle rect = new Microsoft.Xna.Framework.Rectangle(100,
100, 140, 140);
// Create start and sweep angles on ellipse.
float startAngle = 45.0F;
float sweepAngle = 270.0F;
// Draw arc to screen.
//Graphics.DrawArc(blackPen, rect, startAngle, sweepAngle);
}
私はこの関数をこのように呼び出そうとしています
this.Drawarc();
したがって、次のエラーが表示されます
メソッド 'Drawarc' のオーバーロードは 0 の引数を取り
ます