1 write to _unitValue
PresentationFramework (1)
src\Framework\System\Windows\GridLength.cs (1)
111
_unitValue
= (type == GridUnitType.Auto) ? 0.0 : value;
2 references to _unitValue
PresentationFramework (2)
src\Framework\System\Windows\GridLength.cs (2)
185
return ((int)
_unitValue
+ (int)_unitType);
209
public double Value { get { return ((_unitType == GridUnitType.Auto) ? 1.0 :
_unitValue
); } }