Implemented interface member:
2 overrides of Culture
PresentationFramework (2)
MS\Internal\Data\CollectionViewProxy.cs (1)
61public override System.Globalization.CultureInfo Culture
MS\Internal\Data\EnumerableCollectionView.cs (1)
79public override System.Globalization.CultureInfo Culture
2 writes to Culture
PresentationFramework (2)
MS\Internal\Data\EnumerableCollectionView.cs (1)
82set { _view.Culture = value; }
System\Windows\Data\CollectionViewSource.cs (1)
834view.Culture = language.GetSpecificCulture();
7 references to Culture
PresentationFramework (7)
MS\Internal\Controls\InnerItemCollectionView.cs (1)
533SortFieldComparer.SortHelper(_viewList, new SortFieldComparer(_sort, Culture));
MS\Internal\Data\CollectionViewGroupRoot.cs (1)
96get { return _view.Culture; }
MS\Internal\Data\EnumerableCollectionView.cs (1)
81get { return _view.Culture; }
System\Windows\Data\BindingListCollectionView.cs (1)
1338ActiveComparer = new SortFieldComparer(_sort, Culture);
System\Windows\Data\CollectionViewSource.cs (1)
827if (view != null && view.Culture == null)
System\Windows\Data\ListCollectionView.cs (2)
2457IComparer xmlComparer = SystemXmlHelper.PrepareXmlComparer(view.SourceCollection, sort, view.Culture); 2464return new SortFieldComparer(sort, view.Culture);