toolTipController1.ShowHint(args, lbSampleManual.PointToScreen(new Point(e.X, e.Y)));
toolTipController1.Rounded = True;
toolTipController1.ShowBeak = True;
toolTipController1.ShowShadow = True;
ToolTipControllerShowEventArgs args = True;
controller.SetToolTipIconType(control, (ToolTipIconType)icbIconType.EditValue);///系统图标模式
toolTipController1.ImageIndex =              //选择自定义图标
toolTipController1.SetToolTipIconType(control, (ToolTipIconType)icbIconType.EditValue);  //设置图标类型
toolTipController1.IconSize = (ToolTipIconSize)icbIconSize.EditValue;         //图标大小
toolTipController1.SetTitle(control, teTitleText.Text);  设置显示标题
toolTipController1.SetToolTip(control, meToolTipText.Text);设置显示内容
toolTipController1.ToolTipLocation   //位置
ToolTipControllerShowEventArgs args = toolTipController1.CreateShowArgs();  //建立显示实例
            args.ToolTip = meToolTipText.Text;  
            args.Title = teTitleText.Text;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
  • 2021-08-22
  • 2021-08-06
  • 2021-08-03
  • 2021-07-11
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-24
  • 2021-07-30
  • 2022-12-23
  • 2022-02-15
  • 2021-11-20
  • 2022-12-23
相关资源
相似解决方案