5 references to AutoValue
PresentationFramework (5)
System\Windows\Controls\DataGridLength.cs (5)
108
_unitValue = (type == DataGridLengthUnitType.Auto) ?
AutoValue
: value;
247
return (_unitType == DataGridLengthUnitType.Auto) ?
AutoValue
: _unitValue;
347
private static readonly DataGridLength _auto = new DataGridLength(
AutoValue
, DataGridLengthUnitType.Auto, 0d, 0d);
348
private static readonly DataGridLength _sizeToCells = new DataGridLength(
AutoValue
, DataGridLengthUnitType.SizeToCells, 0d, 0d);
349
private static readonly DataGridLength _sizeToHeader = new DataGridLength(
AutoValue
, DataGridLengthUnitType.SizeToHeader, 0d, 0d);