TreeView::LineColor Property
.NET Framework (current version)
Gets or sets the color of the lines connecting the nodes of the TreeView control.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example demonstrates setting the TreeNode line color. To run this example, paste the code into a Windows Form. Call InitializeLineTreeView from the form's constructor or Load event handler.
private: TreeView^ lineTreeView; public: void InitializeLineTreeView() { lineTreeView = gcnew TreeView(); lineTreeView->Size = System::Drawing::Size(200, 200); lineTreeView->LineColor = Color::Red; // Create the root nodes. TreeNode^ docNode = gcnew TreeNode("Documents"); // Add some additional nodes. docNode->Nodes->Add("phoneList.doc"); docNode->Nodes->Add("resume.doc"); lineTreeView->Nodes->Add(docNode); this->Controls->Add(lineTreeView); }
.NET Framework
Available since 2.0
Available since 2.0
Show: