9 references to new
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (1)
12934=> new(this, flags, caption);
System\Windows\Forms\Controls\ListView\ListView.cs (1)
3521ToolInfoWrapper<Control> wrapper = new(this, flags, isExternalTooltip ? null : caption);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridToolTip.cs (1)
97=> new(c, TOOLTIP_FLAGS.TTF_TRANSPARENT | TOOLTIP_FLAGS.TTF_SUBCLASS, _toolTipText);
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
2894ToolInfoWrapper<Control> wrapper = new(this, flags, isExternalTooltip ? null : caption);
System\Windows\Forms\ToolTip\ToolTip.cs (5)
913new ToolInfoWrapper<Control>(control).SendMessage(this, PInvoke.TTM_DELTOOLW); 1002return new(Control.GetSafeHandle(window), flags); 1532ToolInfoWrapper<HandleRef<HWND>> info = new(Control.GetSafeHandle(ownerWindow)); 1737ToolInfoWrapper<HandleRef<HWND>> info = new(Control.GetSafeHandle(win)); 1795ToolInfoWrapper<Control> toolInfo = new(tool);