📄 fmain.frm
字号:
VERSION 5.00
Begin VB.Form Fmain
BackColor = &H00808000&
BorderStyle = 0 'None
ClientHeight = 5970
ClientLeft = 0
ClientTop = 0
ClientWidth = 12000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 5970
ScaleWidth = 12000
ShowInTaskbar = 0 'False
Begin VB.Image Image1
Height = 8250
Left = 0
Picture = "Fmain.frx":0000
Stretch = -1 'True
Top = 0
Width = 12000
End
End
Attribute VB_Name = "Fmain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
Me.ZOrder 1
End Sub
Private Sub Form_Load()
Image1.Width = Me.ScaleWidth
Image1.Height = Me.ScaleHeight
End Sub
Private Sub Form_Resize()
On Error Resume Next
Image1.Width = Me.ScaleWidth
Image1.Height = Me.ScaleHeight
'Image1.Top = (Me.ScaleHeight - Image1.Height) / 2
'Image1.Left = (Me.ScaleWidth - Image1.Width) / 2
'Resize_ALL Me 'Me是窗体名,Form1,Form2等等都可以
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -