8 instantiations of TOOLINFO_T
System.Windows.Forms (8)
winforms\Managed\System\WinForms\DataGridToolTip.cs (2)
66NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T(); 78NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T();
winforms\Managed\System\WinForms\ErrorProvider.cs (3)
917NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T(); 1131NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T(); 1221NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T();
winforms\Managed\System\WinForms\Form.cs (1)
7843toolInfo = new NativeMethods.TOOLINFO_T();
winforms\Managed\System\WinForms\PropertyGridInternal\GridToolTip.cs (1)
128toolInfos[index] = new NativeMethods.TOOLINFO_T();
winforms\Managed\System\WinForms\StatusBar.cs (1)
1854NativeMethods.TOOLINFO_T ti = new NativeMethods.TOOLINFO_T();
20 references to TOOLINFO_T
System.Windows.Forms (20)
winforms\Managed\System\WinForms\DataGridToolTip.cs (2)
66NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T(); 78NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T();
winforms\Managed\System\WinForms\ErrorProvider.cs (3)
917NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T(); 1131NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T(); 1221NativeMethods.TOOLINFO_T toolInfo = new NativeMethods.TOOLINFO_T();
winforms\Managed\System\WinForms\Form.cs (3)
7841private NativeMethods.TOOLINFO_T GetTOOLINFO() { 7842NativeMethods.TOOLINFO_T toolInfo; 7844toolInfo.cbSize = Marshal.SizeOf(typeof(NativeMethods.TOOLINFO_T));
winforms\Managed\System\WinForms\NativeMethods.cs (1)
4761public int cbSize = Marshal.SizeOf(typeof(TOOLINFO_T));
winforms\Managed\System\WinForms\PropertyGridInternal\GridToolTip.cs (4)
30NativeMethods.TOOLINFO_T[] toolInfos; 40this.toolInfos = new NativeMethods.TOOLINFO_T[controls.Length]; 121private NativeMethods.TOOLINFO_T GetTOOLINFO(Control c) { 129toolInfos[index].cbSize = Marshal.SizeOf(typeof(NativeMethods.TOOLINFO_T));
winforms\Managed\System\WinForms\StatusBar.cs (6)
1853private NativeMethods.TOOLINFO_T GetMinTOOLINFO(Tool tool) { 1854NativeMethods.TOOLINFO_T ti = new NativeMethods.TOOLINFO_T(); 1855ti.cbSize = Marshal.SizeOf(typeof(NativeMethods.TOOLINFO_T)); 1875private NativeMethods.TOOLINFO_T GetTOOLINFO(Tool tool) { 1876NativeMethods.TOOLINFO_T ti = GetMinTOOLINFO(tool); 1877ti.cbSize = Marshal.SizeOf(typeof(NativeMethods.TOOLINFO_T));
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (1)
892public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, NativeMethods.TOOLINFO_T lParam);