1 instantiation of TBBUTTON
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolBarButton.cs (1)
585NativeMethods.TBBUTTON button = new NativeMethods.TBBUTTON();
8 references to TBBUTTON
System.Windows.Forms (8)
winforms\Managed\System\WinForms\NativeMethods.cs (1)
5095public TBBUTTON tbButton;
winforms\Managed\System\WinForms\ToolBar.cs (4)
1199NativeMethods.TBBUTTON tbbutton = value.GetTBBUTTON(index); 1290SendMessage(NativeMethods.TB_BUTTONSTRUCTSIZE, Marshal.SizeOf(typeof(NativeMethods.TBBUTTON)), 0); 1375int cb = Marshal.SizeOf(typeof(NativeMethods.TBBUTTON)); 1381NativeMethods.TBBUTTON tbbutton = buttons[x].GetTBBUTTON(x);
winforms\Managed\System\WinForms\ToolBarButton.cs (2)
583internal NativeMethods.TBBUTTON GetTBBUTTON(int commandId) { 585NativeMethods.TBBUTTON button = new NativeMethods.TBBUTTON();
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (1)
900public static extern IntPtr SendMessage(HandleRef hWnd, int msg, int wParam, ref NativeMethods.TBBUTTON lParam);