Implemented interface member:
2 overrides of Culture
PresentationFramework (2)
MS\Internal\Data\CollectionViewProxy.cs (1)
63public override System.Globalization.CultureInfo Culture
MS\Internal\Data\EnumerableCollectionView.cs (1)
83public override System.Globalization.CultureInfo Culture
2 writes to Culture
PresentationFramework (2)
MS\Internal\Data\EnumerableCollectionView.cs (1)
86set { _view.Culture = value; }
System\Windows\Data\CollectionViewSource.cs (1)
835view.Culture = language.GetSpecificCulture();
7 references to Culture
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
534SortFieldComparer.SortHelper(_viewList, new SortFieldComparer(_sort, Culture));
MS\Internal\Data\CollectionViewGroupRoot.cs (1)
99get { return _view.Culture; }
MS\Internal\Data\EnumerableCollectionView.cs (1)
85get { return _view.Culture; }
System\Windows\Data\BindingListCollectionView.cs (1)
1343ActiveComparer = new SortFieldComparer(_sort, Culture);
System\Windows\Data\CollectionViewSource.cs (1)
828if (view != null && view.Culture == null)
System\Windows\Data\ListCollectionView.cs (2)
2463IComparer xmlComparer = SystemXmlHelper.PrepareXmlComparer(view.SourceCollection, sort, view.Culture); 2470return new SortFieldComparer(sort, view.Culture);