📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "关于系统"
ClientHeight = 2385
ClientLeft = 45
ClientTop = 330
ClientWidth = 5430
Icon = "frmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2385
ScaleWidth = 5430
ShowInTaskbar = 0 'False
Begin VB.PictureBox picScan
AutoSize = -1 'True
BackColor = &H00C0C0C0&
BorderStyle = 0 'None
Height = 480
Left = 4485
Picture = "frmAbout.frx":27A2
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 0
ToolTipText = "关闭"
Top = 1605
Width = 480
End
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "陈俊 09800135 (软件测试、发布)"
Height = 255
Left = 360
TabIndex = 7
Top = 1800
Width = 3615
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "柳婷 09800109 (文档、帮助系统)"
Height = 255
Left = 360
TabIndex = 6
Top = 1560
Width = 3615
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "王晓露 09800204 (模块与算法辅助)"
Height = 255
Left = 360
TabIndex = 5
Top = 1320
Width = 3735
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "宋玉娇 09800110 (美工、菜单设计)"
Height = 255
Left = 360
TabIndex = 4
Top = 1080
Width = 4215
End
Begin VB.Line Line5
BorderColor = &H00FFFFFF&
X1 = 195
X2 = 5175
Y1 = 730
Y2 = 730
End
Begin VB.Line Line4
BorderColor = &H00808080&
X1 = 195
X2 = 5175
Y1 = 720
Y2 = 720
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "V1.0"
BeginProperty Font
Name = "Arial"
Size = 14.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 330
Left = 4440
TabIndex = 3
Top = 240
Width = 600
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "银行定期储蓄系统"
BeginProperty Font
Name = "隶书"
Size = 24
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000D&
Height = 495
Left = 360
TabIndex = 2
Top = 120
Width = 3840
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = $"frmAbout.frx":2BE4
Height = 240
Left = 360
TabIndex = 1
Top = 840
Width = 4140
WordWrap = -1 'True
End
Begin VB.Line lLeft_1
BorderColor = &H00808080&
Visible = 0 'False
X1 = 4410
X2 = 4410
Y1 = 1530
Y2 = 2145
End
Begin VB.Line lTop_1
BorderColor = &H00FFFFFF&
Visible = 0 'False
X1 = 4425
X2 = 5055
Y1 = 1530
Y2 = 1530
End
Begin VB.Line lRight_1
BorderColor = &H00FFFFFF&
Visible = 0 'False
X1 = 5055
X2 = 5055
Y1 = 1530
Y2 = 2145
End
Begin VB.Line lBottom_1
BorderColor = &H00808080&
Visible = 0 'False
X1 = 4410
X2 = 5055
Y1 = 2145
Y2 = 2145
End
Begin VB.Line Line1
BorderColor = &H00808080&
Index = 0
X1 = 15
X2 = 5385
Y1 = 15
Y2 = 15
End
Begin VB.Line Line1
BorderColor = &H00E0E0E0&
Index = 1
X1 = 15
X2 = 5385
Y1 = 30
Y2 = 30
End
Begin VB.Line Line1
BorderColor = &H00E0E0E0&
Index = 2
X1 = 0
X2 = 5400
Y1 = 2355
Y2 = 2355
End
Begin VB.Line Line1
BorderColor = &H00808080&
Index = 3
X1 = 15
X2 = 5400
Y1 = 2340
Y2 = 2340
End
Begin VB.Line Line2
BorderColor = &H00808080&
Index = 0
X1 = 15
X2 = 15
Y1 = 15
Y2 = 2355
End
Begin VB.Line Line3
BorderColor = &H00E0E0E0&
Index = 0
X1 = 30
X2 = 30
Y1 = 15
Y2 = 2340
End
Begin VB.Line Line2
BorderColor = &H00808080&
Index = 1
X1 = 5385
X2 = 5385
Y1 = 0
Y2 = 2340
End
Begin VB.Line Line3
BorderColor = &H00E0E0E0&
Index = 1
X1 = 5400
X2 = 5400
Y1 = 0
Y2 = 2355
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim lShowS As Boolean
Private Sub Form_Load()
Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2, Me.Width, Me.Height
AniRotateShowFrm Me.hwnd
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If lShowS = True Then '已经隐藏时退出
lLeft_1.Visible = False
lRight_1.Visible = False
lTop_1.Visible = False
lBottom_1.Visible = False
lShowS = False
End If
End Sub
Private Sub picScan_Click()
Unload Me
End Sub
Private Sub picScan_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
lTop_1.BorderColor = &H808080
lBottom_1.BorderColor = &HFFFFFF
End Sub
Private Sub picScan_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If lShowS = True Then Exit Sub '已经显示时退出
lLeft_1.Visible = True
lRight_1.Visible = True
lTop_1.Visible = True
lBottom_1.Visible = True
lShowS = True
End Sub
Private Sub picScan_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
lTop_1.BorderColor = &HFFFFFF
lBottom_1.BorderColor = &H808080
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -