添加一个tooltip
tooltip.Settip(控件,显示的消息)

解决方案 »

  1.   

    if (this.tooltip != null && this.tooltip.Active )
        this.tooltip.Active = false;
    this.tooltip.SetToolTip(this,"Tes");
    this.tooltip.Active = true;
    编译没错误,但是就没结果
    帮帮忙
    谢谢
      

  2.   

    ToolTip toolTip = new ToolTip();
    toolTip.SetToolTip(控件, "显示文本");
      

  3.   

    if (this.tooltip != null && this.tooltip.Active )
        this.tooltip.Active = false;
    this.tooltip.SetToolTip(this,"Tes");
    this.tooltip.Active = true;
    是写在控件的mouse_move事件里面的
    编译没错误,但是就没结果
    帮帮看看
    谢谢