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)
45sealed partial class BitmapCache : CacheMode
37 references to CacheMode
PresentationCore (37)
System\Windows\Media\CacheMode.cs (2)
27internal static CacheMode Parse(string value) 29CacheMode cacheMode = null;
System\Windows\Media\ContainerVisual.cs (1)
91public CacheMode CacheMode
System\Windows\Media\Converters\Generated\CacheModeValueSerializer.cs (7)
63if (!(value is CacheMode)) 68CacheMode instance = (CacheMode) value; 81return CacheMode.Parse(value ); 94if (value is CacheMode) 96CacheMode instance = (CacheMode) value;
System\Windows\Media\Generated\CacheMode.cs (4)
61public new CacheMode Clone() 63return (CacheMode)base.Clone(); 70public new CacheMode CloneCurrentValue() 72return (CacheMode)base.CloneCurrentValue();
System\Windows\Media\Generated\CacheModeConverter.cs (7)
81if (!(context.Instance is CacheMode)) 86CacheMode value = (CacheMode)context.Instance; 122return CacheMode.Parse(source); 144if (destinationType != null && value is CacheMode) 146CacheMode instance = (CacheMode)value;
System\Windows\Media\Visual.cs (7)
792CacheMode cacheMode = CacheModeField.GetValue(this); 1488CacheMode cacheMode = CacheModeField.GetValue(this); 3352protected internal CacheMode VisualCacheMode 3364CacheMode cacheMode = CacheModeField.GetValue(this); 3370CacheMode newCacheMode = value; 5374private static readonly UncommonField<CacheMode> CacheModeField = new UncommonField<CacheMode>();
System\Windows\Media\VisualTreeHelper.cs (1)
424public static CacheMode GetCacheMode(Visual reference)
System\Windows\Media3D\Viewport2DVisual3D.cs (5)
737typeof(CacheMode), 742public CacheMode CacheMode 744get { return (CacheMode)GetValue(CacheModeProperty); } 752BitmapCache oldValue = (CacheMode)e.OldValue as BitmapCache; 753BitmapCache newValue = (CacheMode)e.NewValue as BitmapCache;
System\Windows\UIElement.cs (3)
2888typeof(CacheMode), 2902public CacheMode CacheMode 2904get { return (CacheMode) GetValue(CacheModeProperty); }