?? frmline.frm
字號(hào):
VERSION 5.00
Begin VB.Form frmline
Caption = "輸入?yún)?shù)"
ClientHeight = 8535
ClientLeft = 60
ClientTop = 450
ClientWidth = 10350
LinkTopic = "Form1"
ScaleHeight = 8535
ScaleWidth = 10350
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton cmddraw
Caption = "正弦曲線"
Height = 495
Left = 1320
TabIndex = 3
Top = 7680
Width = 1215
End
Begin VB.CommandButton cmdclear
Caption = "清屏"
Height = 495
Left = 4320
TabIndex = 2
Top = 7680
Width = 1215
End
Begin VB.CommandButton cmdend
Caption = "退出"
Height = 495
Left = 7800
TabIndex = 1
Top = 7800
Width = 1215
End
Begin VB.PictureBox pictdraw
Height = 4815
Left = 1680
ScaleHeight = 4755
ScaleWidth = 7155
TabIndex = 0
Top = 1440
Width = 7215
End
End
Attribute VB_Name = "frmline"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdDraw_Click()
frminput.Show
End Sub
Private Sub CmdEnd_Click()
End
End Sub
Private Sub CmdClear_Click()
pictdraw.Cls
End Sub
Private Sub Form_Load()
pictdraw.AutoRedraw = True
pictdraw.ScaleWidth = 640
pictdraw.ScaleHeight = 480
pictdraw.Line (0, 240)-(639, 240)
pictdraw.Line (315, 100)-(315, 380)
End Sub
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -