Articles in this section
Category / Section

How to create custom painted nodes in WinForms TreeViewAdv control?

1 min read

Create custom painted nodes

Custom painted nodes can be created by subscribing to the paint events of TreeViewAdv.To get the event fired, we need to use OwnerDrawNodes property. Then, we could apply any graphics style to nodes in BeforeNodePaint event.

C#

// Creating custom painted nodes
private void treeViewAdv1_BeforeNodePaint(object sender, Syncfusion.Windows.Forms.Tools.TreeNodeAdvPaintEventArgs e)
{
    LinearGradientBrush lBrush = new LinearGradientBrush(e.Node.TextBounds, Color.Gold, Color.Beige, LinearGradientMode.Horizontal); e.Graphics.FillRectangle(lBrush, e.Node.TextBounds); e.Graphics.DrawRectangle(new Pen(Color.Red), e.Node.TextBounds);
}

VB

' Creating custom painted nodes
Private Sub TreeViewAdv1_BeforeNodePaint(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Tools.TreeNodeAdvPaintEventArgs) Handles TreeViewAdv1.BeforeNodePaint
    Dim lBrush As LinearGradientBrush lBrush = New LinearGradientBrush(e.Node.TextBounds, Color.Gold, Color.Beige, LinearGradientMode.Horizontal)
e.Graphics.FillRectangle(lBrush, e.Node.TextBounds) e.Graphics.DrawRectangle(New Pen(Color.Red), e.Node.TextBounds)
End Sub

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied