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