1 write to toolInfos
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\GridToolTip.cs (1)
40this.toolInfos = new NativeMethods.TOOLINFO_T[controls.Length];
8 references to toolInfos
System.Windows.Forms (8)
winforms\Managed\System\WinForms\PropertyGridInternal\GridToolTip.cs (8)
127if (toolInfos[index] == null){ 128toolInfos[index] = new NativeMethods.TOOLINFO_T(); 129toolInfos[index].cbSize = Marshal.SizeOf(typeof(NativeMethods.TOOLINFO_T)); 130toolInfos[index].uFlags |= NativeMethods.TTF_IDISHWND | NativeMethods.TTF_TRANSPARENT | NativeMethods.TTF_SUBCLASS; 132toolInfos[index].lpszText = this.toolTipText; 133toolInfos[index].hwnd = c.Handle; 134toolInfos[index].uId = c.Handle; 135return toolInfos[index];