Hello team,
In ultrawingrid when we group the columns we get the columns grouped in the groupbox. We managed to change the color of sortindicator on the group column header by implementing "IUIElementDrawFilter", now we want to change to color of the line joining the two group (please find attached the image).
How do we change the color of the line linking the group at runtime?
You will have to use a DrawFilter for that, as well. There is no property for the button connector color.
If you are having trouble determining which element you need to watch for, I recommend that you get the Infragistics UIElementViewer Utility
Hi Mike,
I tried using the UIElemenViewerUtility but it is not working for me. I added the dll from the project and added the UIElemenViewerDialog , but the UIElemenViewerDialog is not visible only, followed all the step provided in the link.
Did you call the Show method on the component at run-time? Did you pass in an owning form?
HI Mike,
I got the solution to my problem. we just have to write the following code for it.
ultraGrid1.DisplayLayout.GroupByBox.ButtonConnectorColor = Color.Green;
Thanks Mike.