cingsoft 发表于 2015-7-8 15:09:00

WPF-Spread报表控件行对象获取

在我双击一个单元格的时候 我想要得到这个单元格对应的这行的对象 请问如何实现?

iceman 发表于 2015-7-8 17:30:00

回复 1楼cingsoft的帖子

在CellDoubleClick事件中获取:

      private void gcSpreadSheet1_CellDoubleClick(object sender, GrapeCity.Windows.SpreadSheet.UI.CellDoubleClickEventArgs e)
      {
            GrapeCity.Windows.SpreadSheet.Data.Row row = this.gcSpreadSheet1.ActiveSheet.Rows;
      }

iceman 发表于 2015-7-17 17:38:00

回复 1楼cingsoft的帖子

为了给你提供更优质的服务,请对本次服务进行评分。我们会认真对待你提出的宝贵意见,谢谢   
http://gcdn.gcpowertools.com.cn/attachment.aspx?attachmentid=10062
页: [1]
查看完整版本: WPF-Spread报表控件行对象获取