本文整理匯總了VB.NET中System.Windows.Forms.TreeView.HideSelection屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET TreeView.HideSelection屬性的具體用法?VB.NET TreeView.HideSelection怎麽用?VB.NET TreeView.HideSelection使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Windows.Forms.TreeView
的用法示例。
在下文中一共展示了TreeView.HideSelection屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: InitializeSelectedTreeView
' Declare the TreeView control.
Friend WithEvents TreeView2 As System.Windows.Forms.TreeView
' Initialize the TreeView to blend with the form, giving it the
' same color as the form and no border.
Private Sub InitializeSelectedTreeView()
' Create a new TreeView control and set the location and size.
Me.TreeView2 = New System.Windows.Forms.TreeView
Me.TreeView2.Location = New System.Drawing.Point(72, 48)
Me.TreeView2.Size = New System.Drawing.Size(200, 200)
Me.TreeView2.BorderStyle = BorderStyle.Fixed3D
' Set the HideSelection property to false to keep the
' selection highlighted when the user leaves the control.
Me.TreeView2.HideSelection = False
' Add the nodes.
Me.TreeView2.Nodes.AddRange(New System.Windows.Forms.TreeNode() _
{New System.Windows.Forms.TreeNode("Features", _
New System.Windows.Forms.TreeNode() _
{New System.Windows.Forms.TreeNode("Full Color"), _
New System.Windows.Forms.TreeNode("Project Wizards"), _
New System.Windows.Forms.TreeNode("Visual C# and Visual Basic Support")}), _
New System.Windows.Forms.TreeNode("System Requirements", _
New System.Windows.Forms.TreeNode() _
{New System.Windows.Forms.TreeNode _
("Pentium 133 MHz or faster processor "), _
New System.Windows.Forms.TreeNode("Windows 98 or later"), _
New System.Windows.Forms.TreeNode("100 MB Disk space")})})
' Set the tab index and add the TreeView to the form.
Me.TreeView2.TabIndex = 0
Me.Controls.Add(Me.TreeView2)
End Sub