4 instantiations of TipInfo
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ToolTip.cs (4)
1425TipInfo info = new TipInfo(caption, TipInfo.Type.Auto); 1592tt = new TipInfo(text, TipInfo.Type.SemiAbsolute); 2031tt = new TipInfo(text, type); 2055tt = new TipInfo(text, type);
43 references to TipInfo
System.Windows.Forms (43)
winforms\Managed\System\WinForms\ToolTip.cs (43)
181return ((TipInfo)this.tools[tool])?.Caption; 360TipInfo tt = (TipInfo)tools[windowControl]; 361if (tt != null && (tt.TipType & TipInfo.Type.SemiAbsolute) != 0) 1238TipInfo tt = (TipInfo)tools[control]; 1425TipInfo info = new TipInfo(caption, TipInfo.Type.Auto); 1436private void SetToolTipInternal(Control control, TipInfo info) { 1581SetTool(win, text, TipInfo.Type.SemiAbsolute, p); 1590TipInfo tt = (TipInfo)tools[associatedControl]; 1592tt = new TipInfo(text, TipInfo.Type.SemiAbsolute); 1595tt.TipType |= TipInfo.Type.SemiAbsolute; 1665SetTool(window, text, TipInfo.Type.Absolute, new Point(pointX, pointY)); 1691SetTool(window, text, TipInfo.Type.Absolute, new Point(pointX, pointY)); 1716SetTool(window, text, TipInfo.Type.Absolute, new Point(pointX, pointY)); 1741SetTool(window, text, TipInfo.Type.Absolute, new Point(pointX, pointY)); 1758this.SetTool(tool.GetOwnerWindow(), text, TipInfo.Type.Absolute, new Point(pointX, pointY)); 1770TipInfo tipInfo = (TipInfo)(tools[tool] ?? tools[tool.GetOwnerWindow()]); 2008private void SetTool(IWin32Window win, string text, TipInfo.Type type, Point position) { 2022if (type == TipInfo.Type.Absolute || type == TipInfo.Type.SemiAbsolute) { 2029TipInfo tt = (TipInfo)tools[tool]; 2053TipInfo tt = (TipInfo)tools[tool]; 2069if (type == TipInfo.Type.Absolute || type == TipInfo.Type.SemiAbsolute) { 2201TipInfo tt = (TipInfo)tools[win]; 2412TipInfo tt = null; 2415tt = (TipInfo)tools[win]; 2434if ( (tt.TipType & TipInfo.Type.Auto) != 0 && window != null ) 2440if ( ((tt.TipType & TipInfo.Type.SemiAbsolute) != 0) && tt.Position == Point.Empty ) { 2467else if ((tt.TipType & TipInfo.Type.SemiAbsolute) != 0 && tt.Position != Point.Empty) { 2507TipInfo tt = (TipInfo)tools[win]; 2514if ((tt.TipType & TipInfo.Type.Auto) != 0 || (tt.TipType & TipInfo.Type.SemiAbsolute) != 0) { 2522if ((tt.TipType & TipInfo.Type.Auto) == 0) { 2539tt.TipType = TipInfo.Type.Auto;