mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-04 23:39:26 +08:00
解决点击列头排序报错问题
This commit is contained in:
parent
26b051b222
commit
1d727a09ef
@ -860,7 +860,7 @@ namespace CPF.Controls
|
||||
List<object> list = new List<object>();
|
||||
foreach (var item in SelectedIndexs)
|
||||
{
|
||||
if (item >= items.Count && item < 0)
|
||||
if (item >= items.Count || item < 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user