我正在尝试做一些非常简单的事情。我正在尝试创建一个窗口,其中有一个非常合适的圆圈。我将窗口设为200x200,将圆设为200x200,看起来像这样
这是我编写的代码:
using System.Windows.Forms;
using System.Drawing;
class HalloForm : Form
{
public HalloForm()
{
this.Text = "Hallo";
this.BackColor = Color.LightGray;
this.Size = new Size(200, 200);
this.Paint += this.tekenScherm;
this.AutoScaleMode = AutoScaleMode.Font;
}
void tekenScherm(object obj, PaintEventArgs pea)
{
tekenSmiley(pea, 0, 0, 200);
/*pea.Graphics.DrawString("Hallo!"
, new Font("Tahoma", 30)
, Brushes.Blue
, 10, 10
);*/
//pea.Graphics.DrawArc(Pens.Black, )
//pea.Graphics.FillEllipse(Brushes.Black, new Rectangle(new Point(x + 40, y + 40), new Size(50, 50)));
//pea.Graphics.FillEllipse(Brushes.Black, new Rectangle(new Point(x + 110, y + 40), new Size(50, 50)));
//pea.Graphics.FillPolygon(Brushes.Black, new Point[] { new Point(x + 85, x + 120), new Point(x + 115, y + 120), new Point(x + 100, x + 90) });
}
private void tekenSmiley(PaintEventArgs pea, int x, int y, int grootte)
{
pea.Graphics.FillEllipse(Brushes.Yellow, new Rectangle(new Point(x, y), new Size(grootte, grootte)));
}
}
class HalloWin3
{
static void Main()
{
HalloForm scherm;
scherm = new HalloForm();
Application.Run(scherm);
}
}
我尝试了不同的自动缩放模式,但没有一个改变任何东西。您能帮我找出为什么圆圈不适合窗口的原因吗?我知道,由于顶部栏可能包含在高度中,所以可能无法垂直放置,但是仍然应该水平放置。
答案 0 :(得分:5)
正如您已经提到的,表单的Size
包括边框,标题栏等。因此,尝试设置ClientSize
来定义表单的客户区域:
this.ClientSize = new Size(200, 200);