8 writes to _styleBits
PresentationCore (8)
Core\CSharp\System\Windows\Interop\HwndSourceParameters.cs (8)
30
_styleBits
= NativeMethods.WS_VISIBLE;
31
_styleBits
|= NativeMethods.WS_CAPTION;
32
_styleBits
|= NativeMethods.WS_SYSMENU;
33
_styleBits
|= NativeMethods.WS_THICKFRAME;
34
_styleBits
|= NativeMethods.WS_MINIMIZEBOX;
35
_styleBits
|= NativeMethods.WS_MAXIMIZEBOX;
36
_styleBits
|= NativeMethods.WS_CLIPCHILDREN;
90
_styleBits
= value | NativeMethods.WS_CLIPCHILDREN;
4 references to _styleBits
PresentationCore (4)
Core\CSharp\System\Windows\Interop\HwndSourceParameters.cs (4)
86
return
_styleBits
;
285
get { return _treatAsInputRoot ?? ((uint)
_styleBits
& NativeMethods.WS_CHILD) == 0; }
367
&& (this.
_styleBits
== obj.
_styleBits
)