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