10 references to Pixel
PresentationFramework (10)
src\Framework\System\Windows\Controls\DataGridColumn.cs (1)
374if (type == DataGridLengthUnitType.Pixel)
src\Framework\System\Windows\Controls\DataGridColumnCollection.cs (1)
1949column.SetWidthInternal(new DataGridLength(columnDisplayWidth, DataGridLengthUnitType.Pixel, columnDisplayWidth, columnDisplayWidth));
src\Framework\System\Windows\Controls\DataGridLength.cs (5)
37: this(pixels, DataGridLengthUnitType.Pixel) 57: this(value, type, (type == DataGridLengthUnitType.Pixel ? value : Double.NaN), (type == DataGridLengthUnitType.Pixel ? value : Double.NaN)) 88type != DataGridLengthUnitType.Pixel && 200return _unitType == DataGridLengthUnitType.Pixel;
src\Framework\System\Windows\Controls\DataGridLengthConverter.cs (3)
97type = DataGridLengthUnitType.Pixel; 222DataGridLengthUnitType unit = DataGridLengthUnitType.Pixel; 276(unit == DataGridLengthUnitType.Pixel) || DoubleUtil.AreClose(unitFactor, 1.0),