Search code examples
c#winformsuser-interfacetelerik

Hide Hightlighted Border in Telerik RadMenuComboItem


i want to hide the following blue border:

enter image description here

At startup it looks like this:

enter image description here

and after slided over with mouse, it gets the blue border which i am not able to disable. I do not find the right property, maybe someone can help me.

Regards,

Hendrik


Solution

  • According to the provided information, it seems that you are using the Fluent theme. The following code snippet demonstrates how to eliminate the blue border:

    BorderPrimitive b = this.radMenuComboItem1.ComboBoxElement.FindDescendant<BorderPrimitive>(); b.ForeColor = Color.Transparent;

    I hope this helps