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