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;