17 writes to _Style
PresentationFramework (17)
src\Framework\System\Windows\Window.cs (17)
2502
_Style
= NativeMethods.WS_CLIPCHILDREN | NativeMethods.WS_SYSMENU;
2513
_Style
|= NativeMethods.WS_VISIBLE;
2721
_Style
= _swh.StyleFromHwnd;
2722
_Style
&= ~NativeMethods.WS_CAPTION;
3044
_Style
&= ~NativeMethods.WS_CAPTION;
3053
_Style
&= (~NativeMethods.WS_CAPTION);
3057
_Style
|= NativeMethods.WS_CAPTION;
3061
_Style
|= NativeMethods.WS_CAPTION;
3066
_Style
|= NativeMethods.WS_CAPTION;
3324
_Style
= value;
4129
_Style
|= NativeMethods.WS_MAXIMIZE;
4132
_Style
|= NativeMethods.WS_MINIMIZE;
4165
_Style
&= ~(NativeMethods.WS_THICKFRAME | NativeMethods.WS_MAXIMIZEBOX | NativeMethods.WS_MINIMIZEBOX);
4173
_Style
|= NativeMethods.WS_MINIMIZEBOX;
4177
_Style
|= NativeMethods.WS_THICKFRAME | NativeMethods.WS_MAXIMIZEBOX | NativeMethods.WS_MINIMIZEBOX;
5885
_Style
= _isVisible ? (_Style | NativeMethods.WS_VISIBLE) : _Style;
8257
_window.
_Style
= Style;
5 references to _Style
PresentationFramework (5)
src\Framework\System\Windows\Window.cs (5)
2693
param.WindowStyle =
_Style
;
3315
return
_Style
;
5405
int style =
_Style
;
5885
_Style = _isVisible ? (
_Style
| NativeMethods.WS_VISIBLE) :
_Style
;