7 references to GWL
PresentationFramework (7)
System\Windows\Shell\WindowChromeWorker.cs (5)
486var style = (WS)NativeMethods.GetWindowLongPtr(_hwnd, GWL.STYLE); 487var exstyle = (WS_EX)NativeMethods.GetWindowLongPtr(_hwnd, GWL.EXSTYLE); 863var dwStyle = (WS)NativeMethods.GetWindowLongPtr(_hwnd, GWL.STYLE).ToInt32(); 870NativeMethods.SetWindowLongPtr(_hwnd, GWL.STYLE, new IntPtr((int)dwNewStyle)); 923var dwStyle = (WS)NativeMethods.GetWindowLongPtr(_hwnd, GWL.STYLE).ToInt32();
System\Windows\Standard\NativeMethods.cs (2)
2847public static IntPtr GetWindowLongPtr(IntPtr hwnd, GWL nIndex) 3066public static IntPtr SetWindowLongPtr(IntPtr hwnd, GWL nIndex, IntPtr dwNewLong)