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
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)
36
if (!(value is
CacheMode
))
41
CacheMode
instance = (
CacheMode
) value;
53
return
CacheMode
.Parse(value );
66
if (value is
CacheMode
instance)
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)
51
if (!(context.Instance is
CacheMode
))
56
CacheMode
value = (
CacheMode
)context.Instance;
91
return
CacheMode
.Parse(source);
113
if (destinationType != null && value is
CacheMode
)
115
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); }