5 references to AutoValue
PresentationFramework (5)
src\Framework\System\Windows\Controls\DataGridLength.cs (5)
112_unitValue = (type == DataGridLengthUnitType.Auto) ? AutoValue : value; 251return (_unitType == DataGridLengthUnitType.Auto) ? AutoValue : _unitValue; 351private static readonly DataGridLength _auto = new DataGridLength(AutoValue, DataGridLengthUnitType.Auto, 0d, 0d); 352private static readonly DataGridLength _sizeToCells = new DataGridLength(AutoValue, DataGridLengthUnitType.SizeToCells, 0d, 0d); 353private static readonly DataGridLength _sizeToHeader = new DataGridLength(AutoValue, DataGridLengthUnitType.SizeToHeader, 0d, 0d);