4 instantiations of WINDOWPLACEMENT
System.Windows.Forms (4)
winforms\Managed\System\WinForms\Form.cs (2)
5509NativeMethods.WINDOWPLACEMENT wp = new NativeMethods.WINDOWPLACEMENT(); 6846NativeMethods.WINDOWPLACEMENT wp = new NativeMethods.WINDOWPLACEMENT();
winforms\Managed\System\WinForms\MDIClient.cs (1)
250NativeMethods.WINDOWPLACEMENT wp = new NativeMethods.WINDOWPLACEMENT();
winforms\Managed\System\WinForms\ToolBar.cs (1)
1706NativeMethods.WINDOWPLACEMENT wndPlacement = new NativeMethods.WINDOWPLACEMENT();
9 references to WINDOWPLACEMENT
System.Windows.Forms (9)
winforms\Managed\System\WinForms\Form.cs (4)
5509NativeMethods.WINDOWPLACEMENT wp = new NativeMethods.WINDOWPLACEMENT(); 5513wp.length = Marshal.SizeOf(typeof(NativeMethods.WINDOWPLACEMENT)); 6846NativeMethods.WINDOWPLACEMENT wp = new NativeMethods.WINDOWPLACEMENT(); 6847wp.length = Marshal.SizeOf(typeof(NativeMethods.WINDOWPLACEMENT));
winforms\Managed\System\WinForms\MDIClient.cs (2)
250NativeMethods.WINDOWPLACEMENT wp = new NativeMethods.WINDOWPLACEMENT(); 251wp.length = Marshal.SizeOf(typeof(NativeMethods.WINDOWPLACEMENT));
winforms\Managed\System\WinForms\ToolBar.cs (1)
1706NativeMethods.WINDOWPLACEMENT wndPlacement = new NativeMethods.WINDOWPLACEMENT();
winforms\Managed\System\WinForms\UnsafeNativeMethods.cs (2)
1483public static extern int GetWindowPlacement(HandleRef hWnd, ref NativeMethods.WINDOWPLACEMENT placement); 1641public static extern bool SetWindowPlacement(HandleRef hWnd, [In] ref NativeMethods.WINDOWPLACEMENT placement);