System.Windows.Forms.ToolStripTextBox.ToolStripTextBoxControl.ToolTipTimer_Tick C# (CSharp) 메소드

ToolTipTimer_Tick() 개인적인 메소드

private ToolTipTimer_Tick ( object o, EventArgs args ) : void
o object
args EventArgs
리턴 void
			private void ToolTipTimer_Tick (object o, EventArgs args)
			{
				string tooltip = owner_item.GetToolTip ();

				if (!string.IsNullOrEmpty (tooltip))
					ToolTipWindow.Present (this, tooltip);

				ToolTipTimer.Stop ();
			}
			#endregion