本文整理汇总了C#中System.Windows.Forms.ToolTip.Hide方法的典型用法代码示例。如果您正苦于以下问题:C# ToolTip.Hide方法的具体用法?C# ToolTip.Hide怎么用?C# ToolTip.Hide使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.ToolTip
的用法示例。
在下文中一共展示了ToolTip.Hide方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: maskedTextBox1_KeyDown
// Hide the tooltip if the user starts typing again before the five-second display limit on the tooltip expires.
void maskedTextBox1_KeyDown(object sender, KeyEventArgs e)
{
// Create the ToolTip and associate with the Form container.
ToolTip toolTip1 = new ToolTip();
toolTip1.Hide(maskedTextBox1);
}
示例2: ToolTipOnDisabledControl_OnMouseMove
// <summary>
// Helper method to display a tooltip over a disabled control
// </summary>
internal static void ToolTipOnDisabledControl_OnMouseMove(
Object sender, MouseEventArgs e, Control disabledControl, ToolTip toolTip, ref Control controlWithToolTipShown)
{
var parent = sender as Control;
if (parent == null)
{
return;
}
var ctrl = parent.GetChildAtPoint(e.Location);
if (ctrl == disabledControl)
{
// if the user hover on control where tooltip is shown, just return.
if (ctrl == controlWithToolTipShown)
{
return;
}
var tipString = toolTip.GetToolTip(ctrl);
// calculate the screen coordinate of the mouse
toolTip.Show(tipString, ctrl, 2, ctrl.Height + 2);
controlWithToolTipShown = ctrl;
}
else if (controlWithToolTipShown != null)
{
toolTip.Hide(controlWithToolTipShown);
controlWithToolTipShown = null;
}
}
示例3: ToolTipOnDisabledControl_OnMouseLeave
internal static void ToolTipOnDisabledControl_OnMouseLeave(
object sender, EventArgs e, ToolTip toolTip, ref Control controlWithToolTipShown)
{
if (controlWithToolTipShown != null)
{
toolTip.Hide(controlWithToolTipShown);
}
controlWithToolTipShown = null;
}
示例4: HideErrorBalloon
private void HideErrorBalloon(ToolTip toolTip, Label inputLabel) {
toolTip.RemoveAll();
toolTip.Hide(this);
inputLabel.ForeColor = SystemColors.ControlText;
}