2 types derived from CacheMode
PresentationCore (2)
System\Windows\Media\BitmapCache.cs (1)
9
public partial class BitmapCache :
CacheMode
System\Windows\Media\Generated\BitmapCache.cs (1)
18
sealed partial class BitmapCache :
CacheMode
37 references to CacheMode
PresentationCore (37)
System\Windows\Media\CacheMode.cs (2)
21
internal static
CacheMode
Parse(string value)
23
CacheMode
cacheMode = null;
System\Windows\Media\ContainerVisual.cs (1)
82
public
CacheMode
CacheMode
System\Windows\Media\Converters\Generated\CacheModeValueSerializer.cs (7)
38
if (!(value is
CacheMode
))
43
CacheMode
instance = (
CacheMode
) value;
56
return
CacheMode
.Parse(value );
69
if (value is
CacheMode
)
71
CacheMode
instance = (
CacheMode
) value;
System\Windows\Media\Generated\CacheMode.cs (4)
37
public new
CacheMode
Clone()
39
return (
CacheMode
)base.Clone();
46
public new
CacheMode
CloneCurrentValue()
48
return (
CacheMode
)base.CloneCurrentValue();
System\Windows\Media\Generated\CacheModeConverter.cs (7)
53
if (!(context.Instance is
CacheMode
))
58
CacheMode
value = (
CacheMode
)context.Instance;
94
return
CacheMode
.Parse(source);
116
if (destinationType != null && value is
CacheMode
)
118
CacheMode
instance = (
CacheMode
)value;
System\Windows\Media\Visual.cs (7)
773
CacheMode
cacheMode = CacheModeField.GetValue(this);
1469
CacheMode
cacheMode = CacheModeField.GetValue(this);
3330
protected internal
CacheMode
VisualCacheMode
3342
CacheMode
cacheMode = CacheModeField.GetValue(this);
3348
CacheMode
newCacheMode = value;
5352
private static readonly UncommonField<
CacheMode
> CacheModeField = new UncommonField<
CacheMode
>();
System\Windows\Media\VisualTreeHelper.cs (1)
412
public static
CacheMode
GetCacheMode(Visual reference)
System\Windows\Media3D\Viewport2DVisual3D.cs (5)
720
typeof(
CacheMode
),
725
public
CacheMode
CacheMode
727
get { return (
CacheMode
)GetValue(CacheModeProperty); }
735
BitmapCache oldValue = (
CacheMode
)e.OldValue as BitmapCache;
736
BitmapCache newValue = (
CacheMode
)e.NewValue as BitmapCache;
System\Windows\UIElement.cs (3)
2880
typeof(
CacheMode
),
2894
public
CacheMode
CacheMode
2896
get { return (
CacheMode
) GetValue(CacheModeProperty); }