2 types derived from CacheMode
PresentationCore (2)
System\Windows\Media\BitmapCache.cs (1)
8
public partial class BitmapCache :
CacheMode
System\Windows\Media\Generated\BitmapCache.cs (1)
27
public sealed partial class BitmapCache :
CacheMode
35 references to CacheMode
PresentationCore (35)
System\Windows\Media\CacheMode.cs (2)
20
internal static
CacheMode
Parse(string value)
22
CacheMode
cacheMode = null;
System\Windows\Media\ContainerVisual.cs (1)
81
public
CacheMode
CacheMode
System\Windows\Media\Converters\Generated\CacheModeValueSerializer.cs (5)
47
if (!(value is
CacheMode
))
52
CacheMode
instance = (
CacheMode
) value;
64
return
CacheMode
.Parse(value );
77
if (value is
CacheMode
instance)
System\Windows\Media\Generated\CacheMode.cs (4)
44
public new
CacheMode
Clone()
46
return (
CacheMode
)base.Clone();
53
public new
CacheMode
CloneCurrentValue()
55
return (
CacheMode
)base.CloneCurrentValue();
System\Windows\Media\Generated\CacheModeConverter.cs (7)
65
if (!(context.Instance is
CacheMode
))
70
CacheMode
value = (
CacheMode
)context.Instance;
104
return
CacheMode
.Parse(source);
126
if (destinationType != null && value is
CacheMode
)
128
CacheMode
instance = (
CacheMode
)value;
System\Windows\Media\Visual.cs (7)
772
CacheMode
cacheMode = CacheModeField.GetValue(this);
1466
CacheMode
cacheMode = CacheModeField.GetValue(this);
3327
protected internal
CacheMode
VisualCacheMode
3339
CacheMode
cacheMode = CacheModeField.GetValue(this);
3345
CacheMode
newCacheMode = value;
5343
private static readonly UncommonField<
CacheMode
> CacheModeField = new UncommonField<
CacheMode
>();
System\Windows\Media\VisualTreeHelper.cs (1)
411
public static
CacheMode
GetCacheMode(Visual reference)
System\Windows\Media3D\Viewport2DVisual3D.cs (5)
719
typeof(
CacheMode
),
724
public
CacheMode
CacheMode
726
get { return (
CacheMode
)GetValue(CacheModeProperty); }
734
BitmapCache oldValue = (
CacheMode
)e.OldValue as BitmapCache;
735
BitmapCache newValue = (
CacheMode
)e.NewValue as BitmapCache;
System\Windows\UIElement.cs (3)
2871
typeof(
CacheMode
),
2885
public
CacheMode
CacheMode
2887
get { return (
CacheMode
) GetValue(CacheModeProperty); }