工具提示.显示非活动窗口不起作用

本文关键字:不起作用 窗口 非活动 显示 工具提示 | 更新日期: 2023-09-27 18:35:30

当包含控件的窗口处于非活动状态时,为什么不显示使用 ToolTip.Show 手动显示的工具提示?

public class MyControl : Button
{
    private _tip;
    public string ToolTip
    {
        get { return _tip; }
        set { _tip = value; }
    }
    private ToolTip _toolTip = new ToolTip();
    public MyControl()
    {
        _toolTip.UseAnimation = false;
        _toolTip.UseFading = false;
        _toolTip.ShowAlways = true;
    }
    protected override void OnMouseHover(EventArgs e)
    {
        _toolTip.Show(_tip, this, 0, Height);
        base.OnMouseHover(e);
    }
    protected override void OnMouseLeave(EventArgs e)
    {
        _toolTip.Hide(this);
        base.OnMouseLeave(e);
    }
}

我选择了ToolTip.Show,因为我必须在屏幕上无限期地使用工具提示,这在正常ToolTip中是不可能的。我也喜欢将工具提示文本作为控件本身的一部分的想法。但不幸的是,当以这种方式为非活动窗口显示工具提示时(尽管有ShowAlways = true),它根本不起作用。

OnMouseHower事件被引发,但_toolTip.Show什么都不做..除非窗口被激活,否则一切正常。

赏金

为解决方案添加赏金以显示非活动窗体的工具提示(当工具提示文本是控件的属性而不是IContainer时,最好使用解决方案)。

工具提示.显示非活动窗口不起作用

有一个私有方法可以执行您想要的操作,因此要访问它,您必须使用反射来调用它:

using System.Reflection;
public class MyControl : Button {
  private ToolTip toolTip = new ToolTip() {
    UseAnimation = false,
    UseFading = false
  };
  public string ToolTip { get; set; }
  protected override void OnMouseHover(EventArgs e) {
    base.OnMouseHover(e);
    Point mouse = MousePosition;
    mouse.Offset(10, 10);
    MethodInfo m = toolTip.GetType().GetMethod("SetTool",
                           BindingFlags.Instance | BindingFlags.NonPublic);
    m.Invoke(toolTip, new object[] { this, this.ToolTip, 2, mouse });
  }
  protected override void OnMouseLeave(EventArgs e) {
    base.OnMouseLeave(e);
    toolTip.Hide(this);
  }
}

提示将显示在非活动窗口中,并且它将无限期地保留在屏幕上,直到鼠标移出控件。