Notification badge for nodes in RadTreeView
Environment
Product Version | Product | Author |
---|---|---|
2021.1.223 | RadTreeView for WinForms | Nadya Karaivanova |
Description
Usually badges are used to indicate that a new message, email, push notification, or any other info message is waiting. Each app with new unread information has a white number with a red background in the upper right hand corner of the app icon. This is a badge. This article will demonstrate how to create such a notification badge/button for the nodes in RadTreeView control.
Solution
This can be done by creating a custom TreeNodeElement, which will replace the default one in the CreateNodeElement event handler. We should override the CreateChildElements method in order to add a red circled LightVisualElement that would illustrate the notification badge. You can customize the LightVisualElement in a way that is suitable for you, I used red background and white text for the numbers.
If you want to update the displayed number in the red circle, the Synchronize method is the right place where you can sync the LightVisualElement's text.
And also we need to subscribe to the CreateNodeElement event in order to use the newly created custom notification node:
Below you can see the result of this example.