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

问题描述 投票:-1回答:1

我想隐藏以下蓝色边框:

enter image description here

启动时看起来像这样:

enter image description here

并且用鼠标滑过后,它会显示蓝色边框,我无法禁用它。我找不到合适的财产,也许有人可以帮助我。

问候,

Hendrik

c# winforms user-interface telerik design
1个回答
0
投票

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

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

我希望这会有所帮助

© www.soinside.com 2019 - 2024. All rights reserved.