问题描述:如题
问题解答:Spread 排序时会触发AutoSortingColumn事件,可以在该事件中指定排序范围。
关键代码:
- private void fpSpread1_AutoSortingColumn(object sender, FarPoint.Win.Spread.AutoSortingColumnEventArgs e)
- {
- //取消排序
- e.Cancel = true;
- //重新设置排序范围
- this.fpSpread1.Sheets[0].SortRows(0, 5, new FarPoint.Win.Spread.SortInfo[] { new FarPoint.Win.Spread.SortInfo(e.Column, false) });
- }
复制代码
效果截图:
示例下载:点击下载 |