标题:a.Clear(Me.BackColor)在程序中起什么作用?
取消只看楼主
地球人
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2004-9-23
 问题点数:0 回复次数:2 
a.Clear(Me.BackColor)在程序中起什么作用?

有和没有运行前后,我发现没什么变化

Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Click Dim a As Graphics Dim mypen As Pen Dim mypoints() As PointF Dim i As Integer Dim mycount As Integer

mypen = New Pen(System.Drawing.Color.Red, 3)

mycount = Me.Width / 3 ReDim mypoints(mycount)

For i = 1 To mycount mypoints(i).X = i * 10 mypoints(i).Y = -1 * (Sin(i)) ^ 2 * Me.Height Next

a = Me.CreateGraphics a.Clear(Me.BackColor) a.ScaleTransform(1, -1) a.DrawCurve(mypen, mypoints)

a.Dispose() mypen.Dispose() End Sub

搜索更多相关主题的帖子: BackColor Clear 
2004-09-28 18:02
地球人
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2004-9-23
得分:0 

在a.ScaleTransform(1, -1)中

1和-1 具体是什么意思


充实是快乐的源泉!!!
2004-09-28 18:17
地球人
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2004-9-23
得分:0 
谢谢 firechun 了

充实是快乐的源泉!!!
2004-09-30 22:41



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-5834-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.076331 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved