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