📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "关于我的应用程序"
ClientHeight = 3564
ClientLeft = 2340
ClientTop = 1932
ClientWidth = 5736
ClipControls = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2453.724
ScaleMode = 0 'User
ScaleWidth = 5380.766
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.PictureBox picIcon
AutoSize = -1 'True
BorderStyle = 0 'None
ClipControls = 0 'False
Height = 576
Left = 405
Picture = "frmAbout.frx":0000
ScaleHeight = 404.544
ScaleMode = 0 'User
ScaleWidth = 404.544
TabIndex = 1
Top = 180
Width = 576
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Caption = "确定"
Default = -1 'True
Height = 480
Left = 1710
TabIndex = 0
Top = 2880
Width = 2040
End
Begin VB.Label lblVersion
Alignment = 2 'Center
Caption = "版本"
Height = 225
Left = 945
TabIndex = 4
Top = 630
Width = 3885
End
Begin VB.Label Label2
Caption = "如果发现你绘制的图形在本程序下不能得到正确结果,欢迎与我联系。电话:13604005421"
Height = 420
Left = 540
TabIndex = 6
Top = 2250
Width = 4605
End
Begin VB.Label Label1
Caption = $"frmAbout.frx":27A2
Height = 555
Left = 540
TabIndex = 5
Top = 1575
Width = 4560
End
Begin VB.Label lblDescription
Caption = " 感谢 老师 和同学对我的热心帮助"
ForeColor = &H00000000&
Height = 405
Left = 540
TabIndex = 2
Top = 1035
Width = 4560
End
Begin VB.Label lblTitle
Alignment = 2 'Center
Caption = "我的 毕业 设计 "
BeginProperty Font
Name = "宋体"
Size = 14.4
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 480
Left = 960
TabIndex = 3
Top = 240
Width = 3885
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub Form_Load()
Me.Caption = "关于 " & App.Title
lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
lblTitle.Caption = App.Title
Me.Icon = Form1.Icon
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -