在 Telerik RadMenuComboItem 中隐藏突出显示的边框

Hide Hightlighted Border in Telerik RadMenuComboItem

我想隐藏以下蓝色边框:

启动时看起来像这样:

用鼠标滑过后,它出现了我无法禁用的蓝色边框。 我没有找到合适的属性,也许有人可以帮助我。

此致,

亨德里克

根据提供的信息,您使用的似乎是Fluent主题。以下代码片段演示了如何消除蓝色边框:

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

希望对您有所帮助