📄 form3.frm
字号:
VERSION 5.00
Begin VB.Form Form3
BackColor = &H00FFC0C0&
Caption = "欢迎使用!"
ClientHeight = 8085
ClientLeft = 60
ClientTop = 345
ClientWidth = 11880
LinkTopic = "Form3"
LockControls = -1 'True
ScaleHeight = 8085
ScaleWidth = 11880
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command4
Caption = "进入加减界面"
Height = 1000
Left = 6120
TabIndex = 4
Top = 5400
Width = 2400
End
Begin VB.CommandButton Command3
Caption = "退出"
Height = 1000
Left = 9000
TabIndex = 3
Top = 5400
Width = 2400
End
Begin VB.CommandButton Command2
Caption = "进入转置界面"
Height = 1000
Left = 3240
TabIndex = 2
Top = 5400
Width = 2400
End
Begin VB.CommandButton Command1
Caption = "进入相乘界面"
Height = 1000
Left = 360
TabIndex = 1
Top = 5400
Width = 2400
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "欢迎使用矩阵运算软件"
BeginProperty Font
Name = "宋体"
Size = 48
Charset = 134
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 1215
Left = 1080
TabIndex = 0
Top = 1560
Width = 9735
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form3.Hide
Form1.Show '进入相乘界面
End Sub
Private Sub Command2_Click()
Form3.Hide
Form2.Show '进入转置界面
End Sub
Private Sub Command3_Click()
End
End Sub
Private Sub Command4_Click()
Form3.Hide
Form4.Show '进入加减界面
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -