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)
185return ((int)_unitValue + (int)_unitType); 209public double Value { get { return ((_unitType == GridUnitType.Auto) ? 1.0 : _unitValue); } }