7 references to GWL
PresentationFramework (7)
src\Framework\System\Windows\Shell\WindowChromeWorker.cs (5)
571var style = (WS)NativeMethods.GetWindowLongPtr(_hwnd, GWL.STYLE); 572var exstyle = (WS_EX)NativeMethods.GetWindowLongPtr(_hwnd, GWL.EXSTYLE); 1000var dwStyle = (WS)NativeMethods.GetWindowLongPtr(_hwnd, GWL.STYLE).ToInt32(); 1007NativeMethods.SetWindowLongPtr(_hwnd, GWL.STYLE, new IntPtr((int)dwNewStyle)); 1072var dwStyle = (WS)NativeMethods.GetWindowLongPtr(_hwnd, GWL.STYLE).ToInt32();
src\Framework\System\Windows\Standard\NativeMethods.cs (2)
3160public static IntPtr GetWindowLongPtr(IntPtr hwnd, GWL nIndex) 3499public static IntPtr SetWindowLongPtr(IntPtr hwnd, GWL nIndex, IntPtr dwNewLong)