System.Windows.Forms.ToolTip.Show C# (CSharp) Méthode

Show() public méthode

public Show ( string text, IWin32Window window ) : void
text string
window IWin32Window
Résultat void
		public void Show (string text, IWin32Window window)
		{
			Show (text, window, 0);
		}

Same methods

ToolTip::Show ( string text, IWin32Window window, Point point ) : void
ToolTip::Show ( string text, IWin32Window window, Point point, int duration ) : void
ToolTip::Show ( string text, IWin32Window window, int duration ) : void
ToolTip::Show ( string text, IWin32Window window, int x, int y ) : void
ToolTip::Show ( string text, IWin32Window window, int x, int y, int duration ) : void

Usage Example

 private void textBoxEnd_MouseHover(object sender, EventArgs e)
 {
     myToolTip.Show("Enter a period value to end at.", textBoxEnd, 3000);
 }
All Usage Examples Of System.Windows.Forms.ToolTip::Show