转自http://www.cnblogs.com/-ShiL/archive/2012/06/08/ShiL201206081335.html

(一)双击展开,收缩字表

DevExpress GridView属性说明
1 Private Sub ExpandedChild(ByVal sender As DevExpress.XtraGrid.Views.Grid.GridView)
2 '找出焦点行
3 Dim VIntPage As Integer = sender.FocusedRowHandle
4 If sender.GetMasterRowExpanded(VIntPage) Then
5 sender.CollapseMasterRow(VIntPage)
6 Else
7 sender.ExpandMasterRow(VIntPage)
8 End If
9 End Sub
DevExpress GridView属性说明

相关文章:

  • 2021-06-20
  • 2021-07-31
  • 2021-06-20
  • 2021-06-22
  • 2022-02-06
  • 2021-12-14
  • 2021-07-07
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2021-05-31
  • 2021-06-11
相关资源
相似解决方案