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