只画矩形的一角



我用了

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

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

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

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);
}

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

您可以使用 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);
    }

这将在窗体的左上角绘制矩形的一角。

相关内容

  • 没有找到相关文章

最新更新