-
vb.net picturebox控件 绘制曲线
大家都知道,vb.net封装了GDI,但是你死活找不到像vb6一样简单的代码
vb6是这样的:
Dim x1 As Integer
Dim x2 As Integer
Dim y1 As Integer
Dim y2 As Integer
Dim flag As Boolean
Private Sub Picture1_MouseDown(button As Integer, shift As Integer, x As Single, y As Single)
flag = True
x1 = x
y1 = y
Picture1.Line (x1, y1)-(x1 + 1, y1 + 1)
End Sub
Private Sub Picture1_MouseMove(button As Integer, shift As Integer, x As Single, y As Single)
If flag = False Then
Exit Sub
End If
If flag = True Then
x2 = x
y2 = y
Picture1.Line (x1, y1)-(x2, y2)
x1 = x2
y1 = y2
End If
End Sub
Private Sub Picture1_MouseUp(button As Integer, shift As Integer, x As Single, y As Single)
flag = False
End Sub
而vb.net是这样的
Dim x1 As Integer
Dim x2 As Integer
Dim y1 As Integer
Dim y2 As Integer
Dim flag As Boolean = False
Private Sub PictureBox1_MouseDown(sender As Object, e As MouseEventArgs) Handles PictureBox1.MouseDown
flag = True
x1 = e.X
y1 = e.Y
x2 = e.X
y2 = e.Y
End Sub
Private Sub PictureBox1_MouseMove(sender As Object, e As MouseEventArgs) Handles PictureBox1.MouseMove
If flag = True Then
x1 = e.X
y1 = e.Y
Dim Graph As Graphics
Graph = Graphics.FromImage(PictureBox1.Image)
PictureBox1.CreateGraphics.DrawLine(p, New Point(x1, y1), New Point(x2, y2))
x2 = e.X
y2 = e.Y
End If
End Sub
Private Sub PictureBox1_MouseUp(sender As Object, e As MouseEventArgs) Handles PictureBox1.MouseUp
flag = False
End Sub
现在终于明白了吧
那么如何清除呢?
vb6
Picture1.Cls
vb.net
PictureBox1.CreateGraphics.Clear(BackColor)
————————————————
版权声明:本文为CSDN博主「小虞163」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_56050945/article/details/122599106
栏目列表
最新更新
求1000阶乘的结果末尾有多少个0
详解MyBatis延迟加载是如何实现的
IDEA 控制台中文乱码4种解决方案
SpringBoot中版本兼容性处理的实现示例
Spring的IOC解决程序耦合的实现
详解Spring多数据源如何切换
Java报错:UnsupportedOperationException in Col
使用Spring Batch实现批处理任务的详细教程
java中怎么将多个音频文件拼接合成一个
SpringBoot整合ES多个精确值查询 terms功能实
数据库审计与智能监控:从日志分析到异
SQL Server 中的数据类型隐式转换问题
SQL Server中T-SQL 数据类型转换详解
sqlserver 数据类型转换小实验
SQL Server数据类型转换方法
SQL Server 2017无法连接到服务器的问题解决
SQLServer地址搜索性能优化
Sql Server查询性能优化之不可小觑的书签查
SQL Server数据库的高性能优化经验总结
SQL SERVER性能优化综述(很好的总结,不要错
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比