📄 6.12.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3150
ClientLeft = 60
ClientTop = 390
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3150
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox TxtNote
Height = 1335
Left = 2040
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 1
Top = 1320
Width = 1215
End
Begin VB.TextBox Txt
Height = 495
Left = 360
TabIndex = 0
Top = 240
Width = 1215
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Resize()
With Me
Txt.Width = .ScaleWidth - Txt.Left
TxtNote.Width = .ScaleWidth - TxtNote.Left
TxtNote.Height = .ScaleHeight - TxtNote.Top
End With
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -