09/11/23 17:07:18
Dim NewPen As New System.Drawing.Pen(System.Drawing.Color.Black)
Dim FormGraphics as System.Drawing.Graphics
FormGraphics = Me.CreateGraphics()
FormGraphics.DrawLine(NewPen, 0, 0, 300, 300)
NewPen.Dispose()
FormGraphics.Dispose()
こんな感じで無理だっけ?