📄 frmproperty.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmproperty
Caption = "frmproperty"
ClientHeight = 4515
ClientLeft = 60
ClientTop = 345
ClientWidth = 2925
LinkTopic = "Form2"
ScaleHeight = 4515
ScaleWidth = 2925
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ListView ListView1
Height = 3735
Left = 0
TabIndex = 0
Top = 600
Width = 2775
_ExtentX = 4895
_ExtentY = 6588
View = 3
LabelWrap = -1 'True
HideSelection = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 0
End
Begin VB.Label Label1
Caption = "图形属性"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 1
Top = 120
Width = 2895
End
End
Attribute VB_Name = "frmproperty"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Label1.Caption = "所选多边形属性为:" '& rec.Fields("STATE_NAME").Value
Dim col As Object
Set col = frmproperty.ListView1.ColumnHeaders.Add()
col.Text = "属性名称"
Set col = frmproperty.ListView1.ColumnHeaders.Add()
col.Text = "属性值"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -