3 types derived from FreezableCollection
PresentationFramework (1)
System\Windows\Shell\ThumbButtonInfoCollection.cs (1)
7public class ThumbButtonInfoCollection : FreezableCollection<ThumbButtonInfo>
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonControlSizeDefinitionCollection.cs (1)
12public class RibbonControlSizeDefinitionCollection : FreezableCollection<RibbonControlSizeDefinition>
Microsoft\Windows\Controls\Ribbon\RibbonGroupSizeDefinitionBaseCollection.cs (1)
19public class RibbonGroupSizeDefinitionBaseCollection : FreezableCollection<RibbonGroupSizeDefinitionBase>
3 instantiations of FreezableCollection
PresentationCore (1)
System\Windows\FreezableCollection.cs (1)
780return new FreezableCollection<T>();
PresentationFramework (2)
System\Windows\VisualStateGroup.cs (2)
38_states = new FreezableCollection<VisualState>(); 54_transitions = new FreezableCollection<VisualTransition>();
17 references to FreezableCollection
PresentationCore (15)
System\Windows\FreezableCollection.cs (15)
107public new FreezableCollection<T> Clone() 109return (FreezableCollection<T>)base.Clone(); 116public new FreezableCollection<T> CloneCurrentValue() 118return (FreezableCollection<T>)base.CloneCurrentValue(); 791private void CloneCommon(FreezableCollection<T> source, 843FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 855FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 866FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 877FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 979internal Enumerator(FreezableCollection<T> list) 1089private FreezableCollection<T> _list;
PresentationFramework (2)
System\Windows\VisualStateGroup.cs (2)
162private FreezableCollection<VisualState> _states; 163private FreezableCollection<VisualTransition> _transitions;