2 writes to _bits
PresentationFramework (2)
System\Windows\SizeChangedEventArgs.cs (2)
32
if(info.WidthChanged)
_bits
|= _widthChangedBit;
33
if(info.HeightChanged)
_bits
|= _heightChangedBit;
2 references to _bits
PresentationFramework (2)
System\Windows\SizeChangedEventArgs.cs (2)
63
get { return ((
_bits
& _widthChangedBit) != 0); }
77
get { return ((
_bits
& _heightChangedBit) != 0); }