10 references to Pixel
PresentationFramework (10)
System\Windows\Controls\DataGridColumn.cs (1)
369if (type == DataGridLengthUnitType.Pixel)
System\Windows\Controls\DataGridColumnCollection.cs (1)
1939column.SetWidthInternal(new DataGridLength(columnDisplayWidth, DataGridLengthUnitType.Pixel, columnDisplayWidth, columnDisplayWidth));
System\Windows\Controls\DataGridLength.cs (5)
32: this(pixels, DataGridLengthUnitType.Pixel) 52: this(value, type, (type == DataGridLengthUnitType.Pixel ? value : Double.NaN), (type == DataGridLengthUnitType.Pixel ? value : Double.NaN)) 83type != DataGridLengthUnitType.Pixel && 194return _unitType == DataGridLengthUnitType.Pixel;
System\Windows\Controls\DataGridLengthConverter.cs (3)
91type = DataGridLengthUnitType.Pixel; 208DataGridLengthUnitType unit = DataGridLengthUnitType.Pixel; 255(unit == DataGridLengthUnitType.Pixel) || DoubleUtil.AreClose(unitFactor, 1.0),