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