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