1 type derived from FreezableCollection
PresentationFramework (1)
src\Framework\System\Windows\Shell\ThumbButtonInfoCollection.cs (1)
9public class ThumbButtonInfoCollection : FreezableCollection<ThumbButtonInfo>
3 instantiations of FreezableCollection
PresentationCore (1)
Core\CSharp\System\Windows\FreezableCollection.cs (1)
829return new FreezableCollection<T>();
PresentationFramework (2)
src\Framework\System\Windows\VisualStateGroup.cs (2)
41_states = new FreezableCollection<VisualState>(); 57_transitions = new FreezableCollection<VisualTransition>();
17 references to FreezableCollection
PresentationCore (15)
Core\CSharp\System\Windows\FreezableCollection.cs (15)
142public new FreezableCollection<T> Clone() 144return (FreezableCollection<T>)base.Clone(); 151public new FreezableCollection<T> CloneCurrentValue() 153return (FreezableCollection<T>)base.CloneCurrentValue(); 840private void CloneCommon(FreezableCollection<T> source, 892FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 904FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 915FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 926FreezableCollection<T> sourceFreezableCollection = (FreezableCollection<T>) source; 1028internal Enumerator(FreezableCollection<T> list) 1139private FreezableCollection<T> _list;
PresentationFramework (2)
src\Framework\System\Windows\VisualStateGroup.cs (2)
165private FreezableCollection<VisualState> _states; 166private FreezableCollection<VisualTransition> _transitions;