在form界面增加 toolTipController 工具

然后将 ribbonControl.ToolTipController 的属性设置成 toolTipController

DevExpress 隐藏Ribbon中barbuttonItem的SuperTip(2)

toolTipController 添加事件

private void toolTipController1_BeforeShow(object sender, ToolTipControllerShowEventArgs e)
{
e.Show = !(e.SelectedObject is BarButtonItemLink);
}

这样就可以隐藏SuperTip了

相关文章:

  • 2022-12-23
  • 2022-02-09
  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-28
猜你喜欢
  • 2022-12-23
  • 2021-11-01
  • 2022-12-23
  • 2022-02-07
  • 2021-09-28
  • 2021-09-18
相关资源
相似解决方案