Implemented interface member:
2 overrides of Culture
PresentationFramework (2)
MS\Internal\Data\CollectionViewProxy.cs (1)
60public override System.Globalization.CultureInfo Culture
MS\Internal\Data\EnumerableCollectionView.cs (1)
78public override System.Globalization.CultureInfo Culture
2 writes to Culture
PresentationFramework (2)
MS\Internal\Data\EnumerableCollectionView.cs (1)
81set { _view.Culture = value; }
System\Windows\Data\CollectionViewSource.cs (1)
833view.Culture = language.GetSpecificCulture();
7 references to Culture
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
532SortFieldComparer.SortHelper(_viewList, new SortFieldComparer(_sort, Culture));
MS\Internal\Data\CollectionViewGroupRoot.cs (1)
95get { return _view.Culture; }
MS\Internal\Data\EnumerableCollectionView.cs (1)
80get { return _view.Culture; }
System\Windows\Data\BindingListCollectionView.cs (1)
1322ActiveComparer = new SortFieldComparer(_sort, Culture);
System\Windows\Data\CollectionViewSource.cs (1)
826if (view != null && view.Culture == null)
System\Windows\Data\ListCollectionView.cs (2)
2438IComparer xmlComparer = SystemXmlHelper.PrepareXmlComparer(view.SourceCollection, sort, view.Culture); 2445return new SortFieldComparer(sort, view.Culture);