3 types derived from FreezableCollection
PresentationFramework (1)
System\Windows\Shell\ThumbButtonInfoCollection.cs (1)
6public class ThumbButtonInfoCollection : FreezableCollection<ThumbButtonInfo>
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonControlSizeDefinitionCollection.cs (1)
11public class RibbonControlSizeDefinitionCollection : FreezableCollection<RibbonControlSizeDefinition>
Microsoft\Windows\Controls\Ribbon\RibbonGroupSizeDefinitionBaseCollection.cs (1)
18public class RibbonGroupSizeDefinitionBaseCollection : FreezableCollection<RibbonGroupSizeDefinitionBase>
3 instantiations of FreezableCollection
PresentationCore (1)
System\Windows\FreezableCollection.cs (1)
779return new FreezableCollection<T>();
PresentationFramework (2)
System\Windows\VisualStateGroup.cs (2)
37_states = new FreezableCollection<VisualState>(); 53_transitions = new FreezableCollection<VisualTransition>();
17 references to FreezableCollection
PresentationCore (15)
System\Windows\FreezableCollection.cs (15)
106public new FreezableCollection<T> Clone() 108return (FreezableCollection<T>)base.Clone(); 115public new FreezableCollection<T> CloneCurrentValue() 117return (FreezableCollection<T>)base.CloneCurrentValue(); 790private void CloneCommon(FreezableCollection<T> source, 842FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 854FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 865FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 876FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 978internal Enumerator(FreezableCollection<T> list) 1088private FreezableCollection<T> _list;
PresentationFramework (2)
System\Windows\VisualStateGroup.cs (2)
159private FreezableCollection<VisualState> _states; 160private FreezableCollection<VisualTransition> _transitions;