3 types derived from FreezableCollection
PresentationFramework (1)
System\Windows\Shell\ThumbButtonInfoCollection.cs (1)
11public class ThumbButtonInfoCollection : FreezableCollection<ThumbButtonInfo>
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonControlSizeDefinitionCollection.cs (1)
15public class RibbonControlSizeDefinitionCollection : FreezableCollection<RibbonControlSizeDefinition>
Microsoft\Windows\Controls\Ribbon\RibbonGroupSizeDefinitionBaseCollection.cs (1)
23public class RibbonGroupSizeDefinitionBaseCollection : FreezableCollection<RibbonGroupSizeDefinitionBase>
3 instantiations of FreezableCollection
PresentationCore (1)
System\Windows\FreezableCollection.cs (1)
807return new FreezableCollection<T>();
PresentationFramework (2)
System\Windows\VisualStateGroup.cs (2)
42_states = new FreezableCollection<VisualState>(); 58_transitions = new FreezableCollection<VisualTransition>();
17 references to FreezableCollection
PresentationCore (15)
System\Windows\FreezableCollection.cs (15)
134public new FreezableCollection<T> Clone() 136return (FreezableCollection<T>)base.Clone(); 143public new FreezableCollection<T> CloneCurrentValue() 145return (FreezableCollection<T>)base.CloneCurrentValue(); 818private void CloneCommon(FreezableCollection<T> source, 870FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 882FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 893FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 904FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 1006internal Enumerator(FreezableCollection<T> list) 1116private FreezableCollection<T> _list;
PresentationFramework (2)
System\Windows\VisualStateGroup.cs (2)
166private FreezableCollection<VisualState> _states; 167private FreezableCollection<VisualTransition> _transitions;