只绘制一个矩形的角

时间:2013-12-17 05:41:45

标签: c# picturebox rectangles drawrectangle

我用过

Pen pen = new Pen(Color.Red);
pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;

来塑造矩形的边框,但现在我只需要显示那个矩形的角落。

2 个答案:

答案 0 :(得分:3)

您可以通过DrawLine事件处理程序中的Paint函数自行绘制,如下所示:

Pen pen = new Pen(Color.Red);

private void Form1_Load(object sender, System.EventArgs e)
{
    pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);

    pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
}

private void pictureBox1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
    Graphics g = e.Graphics;

    g.DrawLine(pen, 0, 0, pictureBox1.Right, 0);

    g.DrawLine(pen, 0, 0, 0, pictureBox1.Bottom);
}

这是一个用例,也许您需要其他坐标,但您可以轻松修复它。

答案 1 :(得分:2)

你可以使用2行来获得你想要的效果:

    private void MainForm_Paint(object sender, PaintEventArgs e)
    {
        Pen pen = new Pen(Color.Red);
        pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
        e.Graphics.DrawLine(pen, 0, 0, 50, 0 );
        e.Graphics.DrawLine(pen, 0, 0, 0, 50);
    }

这会在表单的左上角绘制一个矩形的角。