23 references to BitmapScalingMode
PresentationCore (23)
Core\CSharp\System\Windows\Media\Generated\DrawingGroup.cs (4)
639data.bitmapScalingMode = (BitmapScalingMode)GetValue(RenderOptions.BitmapScalingModeProperty); 873internal const BitmapScalingMode c_BitmapScalingMode = BitmapScalingMode.Unspecified; 906new UIPropertyMetadata(BitmapScalingMode.Unspecified,
Core\CSharp\System\Windows\Media\RenderOptions.cs (5)
71typeof(BitmapScalingMode), 73new UIPropertyMetadata(BitmapScalingMode.Unspecified), 80public static BitmapScalingMode GetBitmapScalingMode(DependencyObject target) 83return (BitmapScalingMode)target.GetValue(BitmapScalingModeProperty); 89public static void SetBitmapScalingMode(DependencyObject target, BitmapScalingMode bitmapScalingMode)
Core\CSharp\System\Windows\Media\Visual.cs (5)
1699BitmapScalingMode bitmapScalingMode = BitmapScalingModeField.GetValue(this); 1700if (isOnChannel || (bitmapScalingMode != BitmapScalingMode.Unspecified)) 3630protected internal BitmapScalingMode VisualBitmapScalingMode 5410private static readonly UncommonField<BitmapScalingMode> BitmapScalingModeField = new UncommonField<BitmapScalingMode>();
Graphics\include\Generated\wgx_commands.cs (1)
1093[FieldOffset(44)] internal BitmapScalingMode bitmapScalingMode;
Shared\MS\Internal\Generated\BitmapScalingModeValidation.cs (8)
40BitmapScalingMode value = (BitmapScalingMode) valueObject; 42return (value == BitmapScalingMode.Unspecified) || 43(value == BitmapScalingMode.LowQuality) || 44(value == BitmapScalingMode.HighQuality) || 45(value == BitmapScalingMode.Linear) || 46(value == BitmapScalingMode.Fant) || 47(value == BitmapScalingMode.NearestNeighbor);