wince中用vb.net绘制实时曲线

使用vs2008中的vb.net开发基于wince的应用程序,如何实现对串口采集过来的数据绘制实时曲线。... 使用vs2008中的vb.net开发基于wince的应用程序,如何实现对串口采集过来的数据绘制实时曲线。 展开
 我来答
若以下回答无法解决问题,邀请你更新回答
百度网友671fe7fa0
2010-12-01
知道答主
回答量:14
采纳率:0%
帮助的人:8万
展开全部
拖一个PictureBox1控件
创建一个Paint事件。在事件中加入
Private Sub PictureBox1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox1.Paint
' Create pens.
Dim redPen As New Pen(Color.Red, 3)
Dim greenPen As New Pen(Color.Green, 3)

' Create points that define curve.
Dim point1 As New Point(50, 50)
Dim point2 As New Point(100, 25)
Dim point3 As New Point(200, 5)
Dim point4 As New Point(250, 50)
Dim point5 As New Point(300, 100)
Dim point6 As New Point(350, 200)
Dim point7 As New Point(250, 250)
Dim curvePoints As Point() = {point1, point2, point3, point4, _
point5, point6, point7}

' Draw lines between original points to screen.
e.Graphics.DrawLines(redPen, curvePoints)

' Draw curve to screen.
e.Graphics.DrawCurve(greenPen, curvePoints)
End Sub

得到数据后,改point的数据。然后PictureBox1.Refresh()就行了
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式