5 implementations of IsSorted
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
397
bool IBindingList.
IsSorted
=> IsSortedCore;
System.Data.Common (3)
System\Data\DataView.cs (1)
949
bool IBindingList.
IsSorted
=> Sort.Length != 0;
System\Data\DataViewManager.cs (1)
216
bool IBindingList.
IsSorted
System\Data\LinqDataView.cs (1)
277
bool IBindingList.
IsSorted
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1691
public virtual bool
IsSorted
6 references to IsSorted
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (3)
302
if (CurrencyManager?.List is not IBindingList { SupportsSorting: true,
IsSorted
: true })
737
if (CurrencyManager.List is IBindingList ibl && ibl.SupportsSorting && ibl.
IsSorted
)
974
if (CurrencyManager?.List is not IBindingList { SupportsSorting: true,
IsSorted
: true } ibl)
System\Windows\Forms\DataBinding\BindingSource.cs (2)
291
else if (List is IBindingList ibl && ibl.SupportsSorting && ibl.
IsSorted
)
1693
get => _state.HasFlag(BindingSourceStates.IsBindingList) && ((IBindingList)List).
IsSorted
;
System.Windows.Forms.Tests (1)
System\Windows\Forms\BindingSourceTests.cs (1)
371
.Setup(p => p.
IsSorted
)