2 types derived from CacheMode
PresentationCore (2)
Core\CSharp\System\Windows\Media\BitmapCache.cs (1)
10public partial class BitmapCache : CacheMode
Core\CSharp\System\Windows\Media\Generated\BitmapCache.cs (1)
51sealed partial class BitmapCache : CacheMode
37 references to CacheMode
PresentationCore (37)
Core\CSharp\System\Windows\Media\CacheMode.cs (2)
30internal static CacheMode Parse(string value) 32CacheMode cacheMode = null;
Core\CSharp\System\Windows\Media\ContainerVisual.cs (1)
94public CacheMode CacheMode
Core\CSharp\System\Windows\Media\Converters\Generated\CacheModeValueSerializer.cs (7)
66if (!(value is CacheMode)) 71CacheMode instance = (CacheMode) value; 86return CacheMode.Parse(value ); 100if (value is CacheMode) 102CacheMode instance = (CacheMode) value;
Core\CSharp\System\Windows\Media\Generated\CacheMode.cs (4)
66public new CacheMode Clone() 68return (CacheMode)base.Clone(); 75public new CacheMode CloneCurrentValue() 77return (CacheMode)base.CloneCurrentValue();
Core\CSharp\System\Windows\Media\Generated\CacheModeConverter.cs (7)
84if (!(context.Instance is CacheMode)) 89CacheMode value = (CacheMode)context.Instance; 125return CacheMode.Parse(source); 147if (destinationType != null && value is CacheMode) 149CacheMode instance = (CacheMode)value;
Core\CSharp\System\Windows\Media\Visual.cs (7)
798CacheMode cacheMode = CacheModeField.GetValue(this); 1496CacheMode cacheMode = CacheModeField.GetValue(this); 3376protected internal CacheMode VisualCacheMode 3388CacheMode cacheMode = CacheModeField.GetValue(this); 3394CacheMode newCacheMode = value; 5415private static readonly UncommonField<CacheMode> CacheModeField = new UncommonField<CacheMode>();
Core\CSharp\System\Windows\Media\VisualTreeHelper.cs (1)
436public static CacheMode GetCacheMode(Visual reference)
Core\CSharp\System\Windows\Media3D\Viewport2DVisual3D.cs (5)
747typeof(CacheMode), 752public CacheMode CacheMode 754get { return (CacheMode)GetValue(CacheModeProperty); } 762BitmapCache oldValue = (CacheMode)e.OldValue as BitmapCache; 763BitmapCache newValue = (CacheMode)e.NewValue as BitmapCache;
Core\CSharp\System\Windows\UIElement.cs (3)
2914typeof(CacheMode), 2928public CacheMode CacheMode 2930get { return (CacheMode) GetValue(CacheModeProperty); }