📄 form1.frm
字号:
VERSION 5.00
Object = "{D2861E27-8341-41CA-8A76-2884F6F88B16}#26.0#0"; "TMap.ocx"
Begin VB.Form Form1
Caption = "ChinaMap 控件 演示"
ClientHeight = 6195
ClientLeft = 60
ClientTop = 345
ClientWidth = 8550
LinkTopic = "Form1"
ScaleHeight = 413
ScaleMode = 3 'Pixel
ScaleWidth = 570
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text3
Height = 375
Left = 6720
TabIndex = 8
Top = 4920
Width = 1575
End
Begin VB.TextBox Text2
Height = 345
Left = 6720
TabIndex = 5
Top = 4200
Width = 1575
End
Begin VB.CommandButton Command1
Caption = "帮助 -- 注册"
Height = 375
Left = 6720
TabIndex = 4
Top = 5520
Width = 1575
End
Begin VB.TextBox Text1
Height = 345
Left = 6720
TabIndex = 2
Top = 3480
Width = 1575
End
Begin ChinaMap.Map Map1
Height = 5505
Left = 90
TabIndex = 0
Top = 600
Width = 6600
_ExtentX = 11642
_ExtentY = 9710
BackColor = -2147483638
End
Begin VB.Label Label3
Caption = "为了更好的普及本控件,给广大开发人员带来一点方便,现决定提供一种免费注册方式。详细情况见 帮助--注册 。"
ForeColor = &H00404040&
Height = 2055
Left = 6960
TabIndex = 9
Top = 240
Width = 1455
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "简称:"
Height = 180
Left = 6720
TabIndex = 7
Top = 4680
Width = 540
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "省会:"
Height = 180
Left = 6720
TabIndex = 6
Top = 3960
Width = 540
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "试用版控件将对部分省市的点击功能进行限制,如下:"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 480
TabIndex = 3
Top = 120
Width = 5535
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "甘肃,四川,黑龙江,辽宁,广西,湖南,江西,福建,台湾,香港,北京"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 180
Left = 480
TabIndex = 1
Top = 360
Width = 5535
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'本控件以极其简单的属性和事件为您提供了完美的功能
'主要属性:
' ProvinceCn : 省份的中文名
' ProvinceEn : 省份的英文名
' ProvinceShort : 省份的中文简称
' theCapital : 省会
'
' BackColor : 背景颜色
'
'主要事件:
' Click
' MouseMove
' MouseUp
Private Sub Command1_Click()
Form2.Show vbModal
End Sub
Private Sub Label3_Click()
End Sub
Private Sub Map1_Click()
Text1.Text = Map1.ProvinceCn + " Clicked"
Text2.Text = Map1.theCapital
Text3.Text = Map1.ProvinceShort
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -