17 writes to _Style
PresentationFramework (17)
System\Windows\Window.cs (17)
2445
_Style
= NativeMethods.WS_CLIPCHILDREN | NativeMethods.WS_SYSMENU;
2456
_Style
|= NativeMethods.WS_VISIBLE;
2682
_Style
= _swh.StyleFromHwnd;
2683
_Style
&= ~NativeMethods.WS_CAPTION;
2989
_Style
&= ~NativeMethods.WS_CAPTION;
2998
_Style
&= (~NativeMethods.WS_CAPTION);
3002
_Style
|= NativeMethods.WS_CAPTION;
3006
_Style
|= NativeMethods.WS_CAPTION;
3011
_Style
|= NativeMethods.WS_CAPTION;
3275
_Style
= value;
4031
_Style
|= NativeMethods.WS_MAXIMIZE;
4034
_Style
|= NativeMethods.WS_MINIMIZE;
4067
_Style
&= ~(NativeMethods.WS_THICKFRAME | NativeMethods.WS_MAXIMIZEBOX | NativeMethods.WS_MINIMIZEBOX);
4075
_Style
|= NativeMethods.WS_MINIMIZEBOX;
4079
_Style
|= NativeMethods.WS_THICKFRAME | NativeMethods.WS_MAXIMIZEBOX | NativeMethods.WS_MINIMIZEBOX;
5658
_Style
= _isVisible ? (_Style | NativeMethods.WS_VISIBLE) : _Style;
7735
_window.
_Style
= Style;
5 references to _Style
PresentationFramework (5)
System\Windows\Window.cs (5)
2654
param.WindowStyle =
_Style
;
3266
return
_Style
;
5231
int style =
_Style
;
5658
_Style = _isVisible ? (
_Style
| NativeMethods.WS_VISIBLE) :
_Style
;