我创建的方法可以在图片框中创建一个圆圈,但它只会使用矩形的坐标。
我正在尝试创建以下内容,
- Windows 窗体:
- 1个图片框
- 1 个文本框
- 1 个按钮
textBox 应该用于插入圆的半径。
(double input=Convert.ToDouble(textBox1.Text)
{
private void button1_Click(object sender, EventArgs e)
{
double input....
double radius= Math.PI*input*input;
Graphics paper;
paper = pictureBox1.CreateGraphics();
Pen pen = new Pen(Color.Black);
getCircle(paper, pen, (variables for center), radius);
}
private void getCircle(Graphics drawingArea, Pen penToUse, int xPos, int yPos, double radius);
{
}
}
我的问题是我不知道如何使用Math.PI*radius*radius
预先确定的中心坐标创建一个圆。
我想看到一个带有编码方法的答案和button_click