10 types derived from BitmapEffect
PresentationCore (10)
System\Windows\Media\Effects\BevelBitmapEffect.cs (1)
29public sealed partial class BevelBitmapEffect : BitmapEffect
System\Windows\Media\Effects\BitmapEffectGroup.cs (1)
34public sealed partial class BitmapEffectGroup : BitmapEffect
System\Windows\Media\Effects\BlurBitmapEffect.cs (1)
29public sealed partial class BlurBitmapEffect : BitmapEffect
System\Windows\Media\Effects\Generated\BevelBitmapEffect.cs (1)
43sealed partial class BevelBitmapEffect : BitmapEffect
System\Windows\Media\Effects\Generated\BitmapEffectGroup.cs (1)
43sealed partial class BitmapEffectGroup : BitmapEffect
System\Windows\Media\Effects\Generated\BlurBitmapEffect.cs (1)
43sealed partial class BlurBitmapEffect : BitmapEffect
System\Windows\Media\Effects\Generated\DropShadowBitmapEffect.cs (1)
43sealed partial class DropShadowBitmapEffect : BitmapEffect
System\Windows\Media\Effects\Generated\EmbossBitmapEffect.cs (1)
43sealed partial class EmbossBitmapEffect : BitmapEffect
System\Windows\Media\Effects\Generated\OuterGlowBitmapEffect.cs (1)
43sealed partial class OuterGlowBitmapEffect : BitmapEffect
System\Windows\Media\Effects\OuterGlowBitmapEffect.cs (1)
29public sealed partial class OuterGlowBitmapEffect : BitmapEffect
90 references to BitmapEffect
PresentationCore (86)
System\Windows\Media\BoundsDrawingContextWalker.cs (1)
500BitmapEffect effect,
System\Windows\Media\ContainerVisual.cs (1)
101public BitmapEffect BitmapEffect
System\Windows\Media\DrawingDrawingContext.cs (1)
1019BitmapEffect effect,
System\Windows\Media\Effects\BitmapEffectInputData.cs (2)
13public BitmapEffect BitmapEffect; 16public BitmapEffectInputData(BitmapEffect bitmapEffect,
System\Windows\Media\Effects\BitmapEffectState.cs (2)
42private BitmapEffect _bitmapEffect; 47public BitmapEffect BitmapEffect
System\Windows\Media\Effects\Generated\BitmapEffect.cs (4)
57public new BitmapEffect Clone() 59return (BitmapEffect)base.Clone(); 66public new BitmapEffect CloneCurrentValue() 68return (BitmapEffect)base.CloneCurrentValue();
System\Windows\Media\Effects\Generated\BitmapEffectCollection.cs (53)
48public sealed partial class BitmapEffectCollection : Animatable, IList, IList<BitmapEffect> 93public void Add(BitmapEffect value) 121public bool Contains(BitmapEffect value) 131public int IndexOf(BitmapEffect value) 141public void Insert(int index, BitmapEffect value) 163public bool Remove(BitmapEffect value) 179BitmapEffect oldValue = _collection[index]; 223BitmapEffect oldValue = _collection[ index ]; 241public BitmapEffect this[int index] 260BitmapEffect oldValue = _collection[ index ]; 292public void CopyTo(BitmapEffect[] array, int index) 307bool ICollection<BitmapEffect>.IsReadOnly 331IEnumerator<BitmapEffect> IEnumerable<BitmapEffect>.GetEnumerator() 344return ((ICollection<BitmapEffect>)this).IsReadOnly; 379return Contains(value as BitmapEffect); 384return IndexOf(value as BitmapEffect); 395Remove(value as BitmapEffect); 487internal BitmapEffect Internal_GetItem(int i) 514private BitmapEffect Cast(object value) 518if (!(value is BitmapEffect)) 523return (BitmapEffect) value; 529private int AddHelper(BitmapEffect value) 540internal int AddWithoutFiringPublicEvents(BitmapEffect value) 549BitmapEffect newValue = value; 602_collection = new FrugalStructList<BitmapEffect>(count); 606BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].Clone(); 622_collection = new FrugalStructList<BitmapEffect>(count); 626BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].CloneCurrentValue(); 642_collection = new FrugalStructList<BitmapEffect>(count); 646BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetAsFrozen(); 662_collection = new FrugalStructList<BitmapEffect>(count); 666BitmapEffect newValue = (BitmapEffect) sourceBitmapEffectCollection._collection[i].GetCurrentValueAsFrozen(); 744internal FrugalStructList<BitmapEffect> _collection; 754public struct Enumerator : IEnumerator, IEnumerator<BitmapEffect> 765_current = default(BitmapEffect); 844public BitmapEffect Current 867private BitmapEffect _current; 889_collection = new FrugalStructList<BitmapEffect>(); 898_collection = new FrugalStructList<BitmapEffect>(capacity); 904public BitmapEffectCollection(IEnumerable<BitmapEffect> collection) 915ICollection<BitmapEffect> icollectionOfT = collection as ICollection<BitmapEffect>; 919_collection = new FrugalStructList<BitmapEffect>(icollectionOfT); 927_collection = new FrugalStructList<BitmapEffect>(icollection); 931_collection = new FrugalStructList<BitmapEffect>(); 933foreach (BitmapEffect item in collection) 939BitmapEffect newValue = item; 950foreach (BitmapEffect item in collection)
System\Windows\Media\Generated\DrawingContext.cs (1)
429BitmapEffect effect,
System\Windows\Media\Generated\DrawingContextDrawingContextWalker.cs (1)
582BitmapEffect effect,
System\Windows\Media\Generated\DrawingContextWalker.cs (1)
502BitmapEffect effect,
System\Windows\Media\Generated\DrawingGroup.cs (3)
486public BitmapEffect BitmapEffect 490return (BitmapEffect) GetValue(BitmapEffectProperty); 927typeof(BitmapEffect),
System\Windows\Media\Generated\RenderData.cs (2)
1420(BitmapEffect)DependentLookup(data->hEffect), 1772(BitmapEffect)DependentLookup(data->hEffect),
System\Windows\Media\Generated\RenderDataDrawingContext.cs (1)
1257BitmapEffect effect,
System\Windows\Media\HitTestWithPointDrawingContextWalker.cs (1)
296BitmapEffect effect,
System\Windows\Media\Visual.cs (7)
2991protected internal BitmapEffect VisualBitmapEffect 3042BitmapEffect oldBitmapEffect = (bed == null) ? null : bed.BitmapEffect; 3048BitmapEffect newBitmapEffect = value; 3180BitmapEffect currentBitmapEffect = (bed == null) ? null : bed.BitmapEffect; 3253internal BitmapEffect VisualBitmapEffectInternal 3273BitmapEffect bitmapEffect = (bitmapEffectState == null) ? null : bitmapEffectState.BitmapEffect; 3279BitmapEffect newBitmapEffect = value;
System\Windows\Media\VisualTreeHelper.cs (1)
390public static BitmapEffect GetBitmapEffect(Visual reference)
System\Windows\Media3D\Viewport3DVisual.cs (1)
102public BitmapEffect BitmapEffect
System\Windows\UIElement.cs (3)
2744typeof(BitmapEffect), 2758public BitmapEffect BitmapEffect 2760get { return (BitmapEffect) GetValue(BitmapEffectProperty); }
PresentationFramework (3)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
122case 26: t = () => typeof(BitmapEffect); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1928typeof(System.Windows.Media.Effects.BitmapEffect),
System\Windows\Markup\KnownTypes.cs (1)
5580case KnownElements.BitmapEffect: t = typeof(System.Windows.Media.Effects.BitmapEffect); break;
ReachFramework (1)
AlphaFlattener\Primitive.cs (1)
467BitmapEffect effect = dg.BitmapEffect;