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