3 instantiations of TBBUTTONINFO
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ToolBar.cs (1)
1140
NativeMethods.TBBUTTONINFO tbbi = new NativeMethods.
TBBUTTONINFO
();
winforms\Managed\System\WinForms\ToolBarButton.cs (2)
555
NativeMethods.TBBUTTONINFO button = new NativeMethods.
TBBUTTONINFO
();
629
NativeMethods.TBBUTTONINFO button = new NativeMethods.
TBBUTTONINFO
();
9 references to TBBUTTONINFO
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ToolBar.cs (3)
1140
NativeMethods.
TBBUTTONINFO
tbbi = new NativeMethods.TBBUTTONINFO();
1141
tbbi.cbSize = Marshal.SizeOf(typeof(NativeMethods.
TBBUTTONINFO
));
1236
NativeMethods.
TBBUTTONINFO
tbbi = value.GetTBBUTTONINFO(updateText, index);
winforms\Managed\System\WinForms\ToolBarButton.cs (5)
555
NativeMethods.
TBBUTTONINFO
button = new NativeMethods.TBBUTTONINFO();
556
button.cbSize = Marshal.SizeOf(typeof(NativeMethods.
TBBUTTONINFO
));
627
internal NativeMethods.
TBBUTTONINFO
GetTBBUTTONINFO(bool updateText, int newCommandId) {
629
NativeMethods.
TBBUTTONINFO
button = new NativeMethods.TBBUTTONINFO();
630
button.cbSize = Marshal.SizeOf(typeof(NativeMethods.
TBBUTTONINFO
));
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (1)
904
public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, ref NativeMethods.
TBBUTTONINFO
lParam);