十字光标定位

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了十字光标定位相关的知识,希望对你有一定的参考价值。

实现效果:

  技术分享图片

知识运用:

  Graphics对象的DrawLine方法

  public void DrawLine (Pen pen, Point pt1,Point pt2)

  public void DrawLine (Pen pen, int x1,int y1,int x2,int y2)

实现代码:

        private void Form1_MouseDown(object sender, MouseEventArgs e)
        {
            Graphics g = this.CreateGraphics();
            g.DrawLine(new Pen(Color.Black,2),new Point(0,e.Y),new Point(this.Width,e.Y));
            g.DrawLine(new Pen(Color.Black, 2), new Point(e.X, 0), new Point(e.X,this.Height));
        }

 

以上是关于十字光标定位的主要内容,如果未能解决你的问题,请参考以下文章

在PHOTOSHOP中怎么把十字光标改成圆型光标?

Eclipse 光标变为十字准线

PyQt5 中的 Matplotlib 十字准线光标

python---- pyqt 十字光标

代码片段如何使用CSS来快速定义多彩光标

IDEA中的LiveTemplates如何生成代码后定位光标