4 instantiations of MENUITEMINFO_T
System.Windows.Forms (4)
winforms\Managed\System\WinForms\MenuItem.cs (4)
450
NativeMethods.MENUITEMINFO_T info = new NativeMethods.
MENUITEMINFO_T
();
475
NativeMethods.MENUITEMINFO_T info = new NativeMethods.
MENUITEMINFO_T
();
878
NativeMethods.MENUITEMINFO_T info = new NativeMethods.
MENUITEMINFO_T
();
1428
NativeMethods.MENUITEMINFO_T info = new NativeMethods.
MENUITEMINFO_T
();
14 references to MENUITEMINFO_T
System.Windows.Forms (14)
winforms\Managed\System\WinForms\MenuItem.cs (10)
450
NativeMethods.
MENUITEMINFO_T
info = new NativeMethods.MENUITEMINFO_T();
451
info.cbSize = Marshal.SizeOf(typeof(NativeMethods.
MENUITEMINFO_T
));
475
NativeMethods.
MENUITEMINFO_T
info = new NativeMethods.MENUITEMINFO_T();
476
info.cbSize = Marshal.SizeOf(typeof(NativeMethods.
MENUITEMINFO_T
));
856
NativeMethods.
MENUITEMINFO_T
info = CreateMenuItemInfo();
877
private NativeMethods.
MENUITEMINFO_T
CreateMenuItemInfo() {
878
NativeMethods.
MENUITEMINFO_T
info = new NativeMethods.MENUITEMINFO_T();
1428
NativeMethods.
MENUITEMINFO_T
info = new NativeMethods.MENUITEMINFO_T();
1431
info.cbSize = Marshal.SizeOf(typeof(NativeMethods.
MENUITEMINFO_T
));
1460
NativeMethods.
MENUITEMINFO_T
info = CreateMenuItemInfo();
winforms\Managed\System\WinForms\NativeMethods.cs (1)
3779
public int cbSize = Marshal.SizeOf(typeof(
MENUITEMINFO_T
));
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (3)
420
public extern static bool InsertMenuItem(HandleRef hMenu, int uItem, bool fByPosition, NativeMethods.
MENUITEMINFO_T
lpmii);
426
public static extern bool GetMenuItemInfo(HandleRef hMenu, int uItem, bool fByPosition, [In, Out] NativeMethods.
MENUITEMINFO_T
lpmii);
432
public extern static bool SetMenuItemInfo(HandleRef hMenu, int uItem, bool fByPosition, NativeMethods.
MENUITEMINFO_T
lpmii);