📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmabout
BackColor = &H0080C0FF&
BorderStyle = 0 'None
Caption = "About"
ClientHeight = 1725
ClientLeft = 0
ClientTop = 0
ClientWidth = 4710
LinkTopic = "Form1"
ScaleHeight = 1725
ScaleWidth = 4710
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Label Label4
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "OK"
BeginProperty Font
Name = "Times New Roman"
Size = 15
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 375
Left = 2640
TabIndex = 4
Top = 1080
Width = 1815
End
Begin VB.Shape Shape1
BackColor = &H00000000&
BackStyle = 1 'Opaque
FillStyle = 0 'Solid
Height = 375
Left = 2640
Shape = 4 'Rounded Rectangle
Top = 1080
Width = 1815
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "USTC, China,2002"
Height = 180
Left = 600
TabIndex = 3
Top = 1320
Width = 1440
End
Begin VB.Label Label2
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Author Duzi, Huang"
Height = 255
Left = 240
TabIndex = 2
Top = 960
Width = 2175
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Creat things as I think::Duzi"
BeginProperty Font
Name = "Times New Roman"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Index = 0
Left = 435
TabIndex = 0
Top = 270
Width = 3735
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Creat things as I think::Duzi"
BeginProperty Font
Name = "Times New Roman"
Size = 15.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 360
Index = 1
Left = 480
TabIndex = 1
Top = 345
Width = 3735
End
End
Attribute VB_Name = "frmabout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Shape1.FillColor = RGB(0, 0, 0)
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Shape1.FillColor = RGB(0, 0, 0)
End Sub
Private Sub Label4_Click()
Unload frmabout
End Sub
Private Sub Label4_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Shape1.FillColor = RGB(0, 255, 0)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -