50 references to RenderOptions
PresentationCore (45)
System\Windows\Media\Generated\DrawingBrush.cs (3)
237
data.CachingHint = (CachingHint)GetValue(
RenderOptions
.CachingHintProperty);
238
data.CacheInvalidationThresholdMinimum = (double)GetValue(
RenderOptions
.CacheInvalidationThresholdMinimumProperty);
239
data.CacheInvalidationThresholdMaximum = (double)GetValue(
RenderOptions
.CacheInvalidationThresholdMaximumProperty);
System\Windows\Media\Generated\DrawingGroup.cs (9)
361
target.PropertyChanged(
RenderOptions
.EdgeModeProperty);
390
target.PropertyChanged(
RenderOptions
.BitmapScalingModeProperty);
397
target.PropertyChanged(
RenderOptions
.ClearTypeHintProperty);
608
data.EdgeMode = (EdgeMode)GetValue(
RenderOptions
.EdgeModeProperty);
609
data.bitmapScalingMode = (BitmapScalingMode)GetValue(
RenderOptions
.BitmapScalingModeProperty);
610
data.ClearTypeHint = (ClearTypeHint)GetValue(
RenderOptions
.ClearTypeHintProperty);
862
RenderOptions
.EdgeModeProperty.OverrideMetadata(
867
RenderOptions
.BitmapScalingModeProperty.OverrideMetadata(
872
RenderOptions
.ClearTypeHintProperty.OverrideMetadata(
System\Windows\Media\Generated\ImageBrush.cs (3)
237
data.CachingHint = (CachingHint)GetValue(
RenderOptions
.CachingHintProperty);
238
data.CacheInvalidationThresholdMinimum = (double)GetValue(
RenderOptions
.CacheInvalidationThresholdMinimumProperty);
239
data.CacheInvalidationThresholdMaximum = (double)GetValue(
RenderOptions
.CacheInvalidationThresholdMaximumProperty);
System\Windows\Media\Generated\TileBrush.cs (6)
127
target.PropertyChanged(
RenderOptions
.CachingHintProperty);
134
target.PropertyChanged(
RenderOptions
.CacheInvalidationThresholdMinimumProperty);
141
target.PropertyChanged(
RenderOptions
.CacheInvalidationThresholdMaximumProperty);
400
RenderOptions
.CachingHintProperty.OverrideMetadata(
405
RenderOptions
.CacheInvalidationThresholdMinimumProperty.OverrideMetadata(
410
RenderOptions
.CacheInvalidationThresholdMaximumProperty.OverrideMetadata(
System\Windows\Media\Generated\VisualBrush.cs (3)
269
data.CachingHint = (CachingHint)GetValue(
RenderOptions
.CachingHintProperty);
270
data.CacheInvalidationThresholdMinimum = (double)GetValue(
RenderOptions
.CacheInvalidationThresholdMinimumProperty);
271
data.CacheInvalidationThresholdMaximum = (double)GetValue(
RenderOptions
.CacheInvalidationThresholdMaximumProperty);
System\Windows\Media\RenderOptions.cs (6)
33
typeof(
RenderOptions
),
66
typeof(
RenderOptions
),
99
typeof(
RenderOptions
),
133
typeof(
RenderOptions
),
166
typeof(
RenderOptions
),
199
typeof(
RenderOptions
),
System\Windows\Media3D\Viewport2DVisual3D.cs (9)
430
RenderOptions
.SetCachingHint(vb, (CachingHint)GetValue(CachingHintProperty));
431
RenderOptions
.SetCacheInvalidationThresholdMinimum(vb, (double)GetValue(CacheInvalidationThresholdMinimumProperty));
432
RenderOptions
.SetCacheInvalidationThresholdMaximum(vb, (double)GetValue(CacheInvalidationThresholdMaximumProperty));
872
RenderOptions
.CachingHintProperty.AddOwner(
881
RenderOptions
.SetCachingHint(viewport2D._visualBrush, (CachingHint)e.NewValue);
888
RenderOptions
.CacheInvalidationThresholdMinimumProperty.AddOwner(
898
RenderOptions
.SetCacheInvalidationThresholdMinimum(viewport2D._visualBrush, (double)e.NewValue);
905
RenderOptions
.CacheInvalidationThresholdMaximumProperty.AddOwner(
914
RenderOptions
.SetCacheInvalidationThresholdMaximum(viewport2D._visualBrush, (double)e.NewValue);
System\Windows\UIElement.cs (6)
73
RenderOptions
.EdgeModeProperty.OverrideMetadata(
77
RenderOptions
.BitmapScalingModeProperty.OverrideMetadata(
81
RenderOptions
.ClearTypeHintProperty.OverrideMetadata(
2829
base.VisualEdgeMode =
RenderOptions
.GetEdgeMode(this);
2840
base.VisualBitmapScalingMode =
RenderOptions
.GetBitmapScalingMode(this);
2851
base.VisualClearTypeHint =
RenderOptions
.GetClearTypeHint(this);
PresentationFramework (4)
System\Windows\Controls\DatePicker.cs (1)
1085
RenderOptions
.SetClearTypeHint(_calendar, ClearTypeHint.Enabled);
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
611
case 518: t = () => typeof(
RenderOptions
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9205
typeof(System.Windows.Media.
RenderOptions
),
System\Windows\Markup\KnownTypes.cs (1)
6065
case KnownElements.RenderOptions: t = typeof(System.Windows.Media.
RenderOptions
); break;
ReachFramework (1)
Serialization\VisualTreeFlattener.cs (1)
521
EdgeMode edgeMode =
RenderOptions
.GetEdgeMode(visual);