ヘアーライン - peace098beat/windows_applicaciton GitHub Wiki

private void DrawVerticalLine(int x)
        {
            ControlPaint.DrawReversibleLine(
                PointToScreen(new Point(x, 0)),
                PointToScreen(new Point(x, Height)),
                Color.Black);
        }
}

 DrawVerticalLine(e.X); // マウス位置にライン
 if (mousePos.X != -1) DrawVerticalLine(mousePos.X); //前のラインを
 mousePos = e.Location;