C# 窗口窗体中的绘制点

本文关键字:绘制 窗口 窗体 | 更新日期: 2023-09-27 18:30:17

Visual Studio 说有一个未处理的 OverflowException

//draws the point.
public void Draw(Graphics g)
{
    float radius = 3; //radius of the circle which describes the point.
    // draws the circle of the point, with parameters of the square which bounds the circle.
    g.DrawEllipse(new Pen(Color.Black, 6F), float.Parse((this.X - radius).ToString()), float.Parse((this.Y - radius).ToString()), 2 * radius, 2 * radius);
}

C# 窗口窗体中的绘制点

最终会得到图形边界之外的点值。 检查你的这个。X和这个。Y 值。 请参阅在 GDI+ 中绘制坐标的硬边界是什么?