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