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)
30
sealed partial class BitmapCache :
CacheMode
35 references to CacheMode
PresentationCore (35)
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 (5)
48
if (!(value is
CacheMode
))
53
CacheMode
instance = (
CacheMode
) value;
65
return
CacheMode
.Parse(value );
78
if (value is
CacheMode
instance)
System\Windows\Media\Generated\CacheMode.cs (4)
45
public new
CacheMode
Clone()
47
return (
CacheMode
)base.Clone();
54
public new
CacheMode
CloneCurrentValue()
56
return (
CacheMode
)base.CloneCurrentValue();
System\Windows\Media\Generated\CacheModeConverter.cs (7)
66
if (!(context.Instance is
CacheMode
))
71
CacheMode
value = (
CacheMode
)context.Instance;
105
return
CacheMode
.Parse(source);
127
if (destinationType != null && value is
CacheMode
)
129
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;
5346
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)
2872
typeof(
CacheMode
),
2886
public
CacheMode
CacheMode
2888
get { return (
CacheMode
) GetValue(CacheModeProperty); }