能用vb设计编写一个类似于Window画图板的程序,可通过鼠标绘制各种图形,设有工具栏可以选择设置

2024-11-06 20:42:34
推荐回答(4个)
回答1:

Imports System.Drawing
 Private Sub DrawGraphic()
          Me.PictureBox.BackgroundImage = New System.Drawing.Bitmap(PictureBox.Size.Width, PictureBox.Size.Height)
            Dim MyGraphics As System.Drawing.Graphics
            MyGraphics = System.Drawing.Graphics.FromImage(PictureBox.BackgroundImage)
            MyGraphics.Clear(Color.White) '使初始图片为黑色背景 

'绘图
            PictureBox.Refresh()
        End Sub

回答2:

VB6 画图源码 可实现功能 线 圆 矩形 图形移动 颜色 线宽更改 大小更改

回答3:

百度搜的


回答4:

亲,付钱不?