回复 1楼刘君的帖子
Spread提供了CursorType属性和GetCursor和SetCursor方法。
代码参考:
- private void Form1_Load(object sender, System.EventArgs e){
- // Change the cursor shape on column headers.
- fpSpread1.SetCursor(FarPoint.Win.Spread.CursorType.ColumnHeader, System.Windows.Forms.Cursors.Hand);
- }
复制代码
可以在产品文档Customizing the Display of the Cursor章节找到详细介绍。 |