找回密码
 立即注册

QQ登录

只需一步,快速开始

randomcic

注册会员

19

主题

38

帖子

161

积分

注册会员

积分
161

活字格认证

randomcic
注册会员   /  发表于:2016-5-26 20:51  /   查看:3759  /  回复:3
以前用Private Sub fpSpread1_BlockSelected(.......)   来判断鼠标范围选定,现在用winforms4版本时,怎么也找不到类似的事件了。
请问这个版本中改成什么事件来判断鼠标已经范围选定了。

3 个回复

倒序浏览
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-5-27 08:55:07
沙发
事件是 SelectionChanged 用 GetSelection(0);获取选中区域
  1. Private Sub FpSpread1_SelectionChanged(ByVal sender As Object, ByVal e As FarPoint.Win.Spread.SelectionChangedEventArgs) Handles
  2. FpSpread1.SelectionChanged
  3.      Dim cr As FarPoint.Win.Spread.Model.CellRange
  4.      cr = e.View.Sheets(0).GetSelection(0)
  5.      Label1.Text = "The first column in the selection is " & cr.Column & " and the first row is " & cr.Row
  6. End Sub
复制代码
回复 使用道具 举报
randomcic
注册会员   /  发表于:2016-5-27 19:07:56
板凳
原来是这样的,非常感谢。
回复 使用道具 举报
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-5-30 09:27:29
地板
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部