📄 frmselectpoint.frm
字号:
VERSION 5.00
Begin VB.Form frmSelectPoint
BackColor = &H00C0C000&
BorderStyle = 5 'Sizable ToolWindow
Caption = "详细信息窗口"
ClientHeight = 1800
ClientLeft = 60
ClientTop = 285
ClientWidth = 3375
Icon = "frmSelectPoint.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1800
ScaleWidth = 3375
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.ListBox List1
BackColor = &H80000018&
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 1530
Left = 120
TabIndex = 0
Top = 120
Width = 3155
End
Begin VB.Shape Shape1
BackColor = &H80000018&
BackStyle = 1 'Opaque
BorderColor = &H0080FFFF&
BorderWidth = 2
Height = 1695
Left = 60
Top = 60
Width = 3285
End
End
Attribute VB_Name = "frmSelectPoint"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Resize()
If Me.ScaleWidth <= 3495 Then
Me.Width = 3495
End If
If Me.ScaleHeight <= 2145 Then
Me.Height = 2145
End If
Shape1.Width = Me.ScaleWidth - 110
Shape1.Height = Me.ScaleHeight - 110
List1.Width = Me.ScaleWidth - 240
List1.Height = Me.ScaleHeight - 240
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -