8 references to Auto
PresentationFramework (8)
src\Framework\System\Windows\Controls\DataGridColumn.cs (1)
378else if (type == DataGridLengthUnitType.Auto ||
src\Framework\System\Windows\Controls\DataGridLength.cs (5)
87if (type != DataGridLengthUnitType.Auto && 112_unitValue = (type == DataGridLengthUnitType.Auto) ? AutoValue : value; 212return _unitType == DataGridLengthUnitType.Auto; 251return (_unitType == DataGridLengthUnitType.Auto) ? AutoValue : _unitValue; 351private static readonly DataGridLength _auto = new DataGridLength(AutoValue, DataGridLengthUnitType.Auto, 0d, 0d);
src\Framework\System\Windows\Controls\DataGridLengthConverter.cs (2)
93type = DataGridLengthUnitType.Auto; 174case DataGridLengthUnitType.Auto: