mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-11-24 08:33:23 +08:00
解决点击列头排序报错问题
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user