10 references to Pixel
PresentationFramework (10)
System\Windows\Controls\DataGridColumn.cs (1)
373if (type == DataGridLengthUnitType.Pixel)
System\Windows\Controls\DataGridColumnCollection.cs (1)
1948column.SetWidthInternal(new DataGridLength(columnDisplayWidth, DataGridLengthUnitType.Pixel, columnDisplayWidth, columnDisplayWidth));
System\Windows\Controls\DataGridLength.cs (5)
36: this(pixels, DataGridLengthUnitType.Pixel) 56: this(value, type, (type == DataGridLengthUnitType.Pixel ? value : Double.NaN), (type == DataGridLengthUnitType.Pixel ? value : Double.NaN)) 87type != DataGridLengthUnitType.Pixel && 199return _unitType == DataGridLengthUnitType.Pixel;
System\Windows\Controls\DataGridLengthConverter.cs (3)
96type = DataGridLengthUnitType.Pixel; 213DataGridLengthUnitType unit = DataGridLengthUnitType.Pixel; 267(unit == DataGridLengthUnitType.Pixel) || DoubleUtil.AreClose(unitFactor, 1.0),