📄 horizontal n vertical scroll bar.frm
字号:
VERSION 5.00
Begin VB.Form Form38
BackColor = &H00808080&
Caption = "Form38"
ClientHeight = 5280
ClientLeft = 60
ClientTop = 450
ClientWidth = 8565
LinkTopic = "Form38"
ScaleHeight = 5280
ScaleWidth = 8565
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
Begin VB.CommandButton Command1
Caption = "EXIT"
BeginProperty Font
Name = "Monotype Corsiva"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 1575
Left = 11280
TabIndex = 3
Top = 960
Width = 2535
End
Begin VB.TextBox Text1
BackColor = &H00E0E0E0&
BeginProperty Font
Name = "Comic Sans MS"
Size = 2.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 8175
Left = 360
TabIndex = 2
Top = 240
Width = 9135
End
Begin VB.VScrollBar VScroll1
Height = 8175
Left = 9480
TabIndex = 1
Top = 240
Width = 495
End
Begin VB.HScrollBar HScroll1
Height = 495
Left = 360
TabIndex = 0
Top = 8400
Width = 9135
End
End
Attribute VB_Name = "Form38"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
End
End Sub
Private Sub HScroll1_Change()
Text1.FontSize = 10 + (HScroll1.Value)
End Sub
Private Sub VScroll1_Change()
Text1.FontSize = 10 + (VScroll1.Value)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -