FORM1.FRM
上传用户:huposhihun
上传日期:2007-01-07
资源大小:7k
文件大小:9k
源码类别:

TreeView控件

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
  3. Begin VB.Form Form1 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   4875
  6.    ClientLeft      =   1785
  7.    ClientTop       =   1455
  8.    ClientWidth     =   5415
  9.    LinkTopic       =   "Form10"
  10.    ScaleHeight     =   4875
  11.    ScaleWidth      =   5415
  12.    Begin ComctlLib.TreeView OrgTree 
  13.       DragIcon        =   "Form1.frx":0000
  14.       Height          =   4335
  15.       Left            =   120
  16.       TabIndex        =   0
  17.       Top             =   480
  18.       Width           =   4575
  19.       _ExtentX        =   8070
  20.       _ExtentY        =   7646
  21.       _Version        =   327682
  22.       LineStyle       =   1
  23.       Style           =   7
  24.       Appearance      =   1
  25.    End
  26.    Begin VB.Image IconImage 
  27.       Height          =   480
  28.       Index           =   3
  29.       Left            =   4800
  30.       Picture         =   "Form1.frx":0152
  31.       Top             =   3480
  32.       Width           =   480
  33.    End
  34.    Begin VB.Image IconImage 
  35.       Height          =   480
  36.       Index           =   2
  37.       Left            =   4800
  38.       Picture         =   "Form1.frx":02A4
  39.       Top             =   3000
  40.       Width           =   480
  41.    End
  42.    Begin VB.Image IconImage 
  43.       Height          =   480
  44.       Index           =   1
  45.       Left            =   4800
  46.       Picture         =   "Form1.frx":03F6
  47.       Top             =   2520
  48.       Width           =   480
  49.    End
  50.    Begin VB.Image TreeImage 
  51.       Height          =   240
  52.       Index           =   6
  53.       Left            =   5160
  54.       Picture         =   "Form1.frx":0548
  55.       Top             =   2160
  56.       Width           =   240
  57.    End
  58.    Begin VB.Image TreeImage 
  59.       Height          =   240
  60.       Index           =   5
  61.       Left            =   5160
  62.       Picture         =   "Form1.frx":064A
  63.       Top             =   1800
  64.       Width           =   240
  65.    End
  66.    Begin VB.Image TreeImage 
  67.       Height          =   240
  68.       Index           =   4
  69.       Left            =   5160
  70.       Picture         =   "Form1.frx":098C
  71.       Top             =   1440
  72.       Width           =   240
  73.    End
  74.    Begin VB.Image TreeImage 
  75.       Height          =   240
  76.       Index           =   3
  77.       Left            =   4800
  78.       Picture         =   "Form1.frx":0CCE
  79.       Top             =   2160
  80.       Width           =   240
  81.    End
  82.    Begin VB.Image TreeImage 
  83.       Height          =   240
  84.       Index           =   2
  85.       Left            =   4800
  86.       Picture         =   "Form1.frx":0DD0
  87.       Top             =   1800
  88.       Width           =   240
  89.    End
  90.    Begin VB.Image TreeImage 
  91.       Height          =   240
  92.       Index           =   1
  93.       Left            =   4800
  94.       Picture         =   "Form1.frx":1112
  95.       Top             =   1440
  96.       Width           =   240
  97.    End
  98.    Begin ComctlLib.ImageList TreeImages 
  99.       Left            =   4800
  100.       Top             =   720
  101.       _ExtentX        =   1005
  102.       _ExtentY        =   1005
  103.       BackColor       =   -2147483643
  104.       MaskColor       =   12632256
  105.       _Version        =   327682
  106.    End
  107. End
  108. Attribute VB_Name = "Form1"
  109. Attribute VB_GlobalNameSpace = False
  110. Attribute VB_Creatable = False
  111. Attribute VB_PredeclaredId = True
  112. Attribute VB_Exposed = False
  113. Option Explicit
  114. Private Enum ObjectType
  115.     otNone = 0
  116.     otFactory = 1
  117.     otGroup = 2
  118.     otPerson = 3
  119.     otFactory2 = 4
  120.     otGroup2 = 5
  121.     otPerson2 = 6
  122. End Enum
  123. Private SourceNode As Object
  124. Private SourceType As ObjectType
  125. Private TargetNode As Object
  126. ' ***********************************************
  127. ' Return the node's object type.
  128. ' ***********************************************
  129. Private Function NodeType(test_node As Node) As ObjectType
  130.     If test_node Is Nothing Then Exit Function
  131.     Select Case Left$(test_node.Key, 1)
  132.         Case "f"
  133.             NodeType = otFactory
  134.         Case "g"
  135.             NodeType = otGroup
  136.         Case "p"
  137.             NodeType = otPerson
  138.     End Select
  139. End Function
  140. ' ***********************************************
  141. ' Prepare the ImageList and TreeView controls.
  142. ' ***********************************************
  143. Private Sub Form_Load()
  144. Dim i As Integer
  145. Dim factory As Node
  146. Dim group As Node
  147. Dim person As Node
  148.     ' Load pictures into the ImageList.
  149.     For i = 1 To 6
  150.         TreeImages.ListImages.Add , , TreeImage(i).Picture
  151.     Next i
  152.     
  153.     ' Attach the TreeView to the ImageList.
  154.     OrgTree.ImageList = TreeImages
  155.     
  156.     ' Create some nodes.
  157.     Set factory = OrgTree.Nodes.Add(, , "f R & D", "R & D", otFactory, otFactory2)
  158.     Set group = OrgTree.Nodes.Add(factory, tvwChild, "g Engineering", "Engineering", otGroup, otGroup2)
  159.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Cameron, Charlie", "Cameron, Charlie", otPerson, otPerson2)
  160.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Davos, Debbie", "Davos, Debbie", otPerson, otPerson2)
  161.     person.EnsureVisible
  162.     Set group = OrgTree.Nodes.Add(factory, tvwChild, "g Test", "Test", otGroup, otGroup2)
  163.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Able, Andy", "Andy, Able", otPerson, otPerson2)
  164.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Baker, Betty", "Baker, Betty", otPerson, otPerson2)
  165.     person.EnsureVisible
  166.     
  167.     Set factory = OrgTree.Nodes.Add(, , "f Sales & Support", "Sales & Support", otFactory, otFactory2)
  168.     Set group = OrgTree.Nodes.Add(factory, tvwChild, "g Showroom Sales", "Showroom Sales", otGroup, otGroup2)
  169.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Gaines, Gina", "Gaines, Gina", otPerson, otPerson2)
  170.     person.EnsureVisible
  171.     Set group = OrgTree.Nodes.Add(factory, tvwChild, "g Field Service", "Field Service", otGroup, otGroup2)
  172.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Helms, Harry", "Helms, Harry", otPerson, otPerson2)
  173.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Ives, Irma", "Ives, Irma", otPerson, otPerson2)
  174.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Jackson, Josh", "Jackson, Josh", otPerson, otPerson2)
  175.     person.EnsureVisible
  176.     Set group = OrgTree.Nodes.Add(factory, tvwChild, "g Customer Support", "Customer Support", otGroup, otGroup2)
  177.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Klug, Karl", "Klug, Karl", otPerson, otPerson2)
  178.     Set person = OrgTree.Nodes.Add(group, tvwChild, "p Landau, Linda", "Landau, Linda", otPerson, otPerson2)
  179.     person.EnsureVisible
  180. End Sub
  181. ' ***********************************************
  182. ' Make the TreeView as large as possible.
  183. ' ***********************************************
  184. Private Sub Form_Resize()
  185.     OrgTree.Move 0, 0, ScaleWidth, ScaleHeight
  186. End Sub
  187. ' ***********************************************
  188. ' Save the node pressed so we can drag it later.
  189. ' ***********************************************
  190. Private Sub OrgTree_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single)
  191.     Set SourceNode = OrgTree.HitTest(x, y)
  192. End Sub
  193. ' ***********************************************
  194. ' Start a drag if one is not in progress.
  195. ' ***********************************************
  196. Private Sub OrgTree_MouseMove(Button As Integer, Shift As Integer, x As Single, y As Single)
  197.     If SourceNode Is Nothing Then Exit Sub
  198.     If Button = vbLeftButton Then
  199.         ' Start a new drag. Note that we do not get
  200.         ' other MouseMove events while the drag is
  201.         ' in progress.
  202.         
  203.         ' See what node we are dragging.
  204.         SourceType = NodeType(SourceNode)
  205.         ' Select this node. When no node is highlighted,
  206.         ' this node will be displayed as selected. That
  207.         ' shows where it will land if dropped.
  208.         Set OrgTree.SelectedItem = SourceNode
  209.         ' Set the drag icon for this source.
  210.         OrgTree.DragIcon = IconImage(SourceType)
  211.         OrgTree.Drag vbBeginDrag
  212.     End If
  213. End Sub
  214. ' ***********************************************
  215. ' The user is dropping. See if the drop is valid.
  216. ' ***********************************************
  217. Private Sub OrgTree_DragDrop(Source As Control, x As Single, y As Single)
  218.     If SourceNode Is Nothing Then Exit Sub
  219.     If Not (OrgTree.DropHighlight Is Nothing) Then
  220.         ' It's a valid drop. Set source node's
  221.         ' parent to be the target node.
  222.         Set SourceNode.Parent = OrgTree.DropHighlight
  223.         Set OrgTree.DropHighlight = Nothing
  224.     End If
  225.     Set SourceNode = Nothing
  226.     SourceType = otNone
  227. End Sub
  228. ' ***********************************************
  229. ' The mouse is being dragged over the control.
  230. ' Highlight the appropriate node.
  231. ' ***********************************************
  232. Private Sub OrgTree_DragOver(Source As Control, x As Single, y As Single, State As Integer)
  233. Dim target As Node
  234. Dim highlight As Boolean
  235.     If SourceNode Is Nothing Then Exit Sub
  236.     ' See what node we're above.
  237.     Set target = OrgTree.HitTest(x, y)
  238.     
  239.     ' If it's the same as last time, do nothing.
  240.     If target Is TargetNode Then Exit Sub
  241.     Set TargetNode = target
  242.     
  243.     highlight = False
  244.     If Not (TargetNode Is Nothing) Then
  245.         ' See what kind of node were above.
  246.         If NodeType(TargetNode) + 1 = SourceType Then _
  247.             highlight = True
  248.     End If
  249.     
  250.     If highlight Then
  251.         Set OrgTree.DropHighlight = TargetNode
  252.     Else
  253.         Set OrgTree.DropHighlight = Nothing
  254.     End If
  255. End Sub