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