发布网友 发布时间:2022-05-04 17:26
共2个回答
热心网友 时间:2022-06-24 08:55
画点:追答不好意思,看错了,画点可以用bitmap类的SetPixel方法实现:
Private Sub PictureBox1_Click(sender As System.Object, e As System.EventArgs) Handles PictureBox1.Click
Dim bmp As New Bitmap(200, 100, Imaging.PixelFormat.Format32bppArgb)
bmp.SetPixel(10, 10, Color.Red) '在PictureBox1控件的(10,10)坐标,画一个红点
PictureBox1.Image = bmp
End Sub
热心网友 时间:2022-06-24 08:56
其实画点就是画矩形啊,只要把边长设为一个像素就行