4 references to Auto
PresentationFramework (4)
System\Windows\Controls\DataGridColumn.cs (1)
192new FrameworkPropertyMetadata(DataGridLength.Auto, new PropertyChangedCallback(OnWidthPropertyChanged), new CoerceValueCallback(OnCoerceWidth)));
System\Windows\Controls\DataGridColumnCollection.cs (1)
1161column.Width = DataGridLength.Auto;
System\Windows\Controls\Primitives\DataGridColumnHeader.cs (2)
357header.Column.Width = DataGridLength.Auto; 364get { return Column != null ? Column.Width : DataGridLength.Auto; }