We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

How to create custom painted nodes in WinForms TreeViewAdv control?

Platform: WinForms |
Control: TreeViewAdv

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

 

2X faster development

The ultimate WinForms UI toolkit to boost your development speed.
ADD COMMENT
You must log in to leave a comment

Please sign in to access our KB

This page will automatically be redirected to the sign-in page in 10 seconds.

Up arrow icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile