📄 a-5.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "实验1.5"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "复制=>"
Height = 375
Left = 1920
TabIndex = 4
Top = 1800
Width = 855
End
Begin VB.CommandButton Command1
Caption = "隶书25磅"
Height = 495
Left = 1920
TabIndex = 3
Top = 960
Width = 855
End
Begin VB.TextBox Text2
Height = 2295
Left = 2880
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 1
Top = 720
Width = 1575
End
Begin VB.TextBox Text1
Height = 2295
Left = 240
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "a-5.frx":0000
Top = 720
Width = 1575
End
Begin VB.Label Label1
Caption = "复制文本 输入文本"
Height = 255
Left = 480
TabIndex = 2
Top = 240
Width = 4095
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.FontName = "隶书"
Text1.FontSize = 25
End Sub
Private Sub Command2_Click()
Text2.Text = Text1.SelText
Text2.FontName = Text1.FontName
Text2.FontSize = Text1.FontSize
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -