📄 frmbasic.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frmBasic
BorderStyle = 1 'Fixed Single
Caption = "Form1"
ClientHeight = 5850
ClientLeft = 45
ClientTop = 330
ClientWidth = 9390
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5850
ScaleWidth = 9390
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ImageList ImageList1
Left = 1320
Top = 2760
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 38
ImageHeight = 38
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 4
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmBasic.frx":0000
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmBasic.frx":118A
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmBasic.frx":2314
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmBasic.frx":349E
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.ListView ListView
Height = 2655
Left = 2640
TabIndex = 1
Top = 2880
Width = 6615
_ExtentX = 11668
_ExtentY = 4683
LabelWrap = -1 'True
HideSelection = -1 'True
_Version = 393217
ForeColor = -2147483640
BackColor = -2147483643
BorderStyle = 1
Appearance = 1
NumItems = 0
End
Begin MSComctlLib.TreeView TreeView
Height = 5295
Left = 120
TabIndex = 0
Top = 240
Width = 2415
_ExtentX = 4260
_ExtentY = 9340
_Version = 393217
Style = 7
ImageList = "ImageList1"
Appearance = 1
End
End
Attribute VB_Name = "frmBasic"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Call InitTreeView
End Sub
Private Sub InitTreeView()
Dim NodeX As Node
TreeView.Nodes.Clear
Set NodeX = TreeView.Nodes.Add(, , "S10", "基本资料", 2, 1)
Set NodeX = TreeView.Nodes.Add("S10", tvwChild, "S11", "上班时段", 3, 4)
Set NodeX = TreeView.Nodes.Add("S10", tvwChild, "S12", "段日设定", 3, 4)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -