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