パラメータ
- row
- セルが含まれる行のインデックス。
- col
- セルが含まれる行のインデックス。
void OlapGrid_DoubleClick(object sender, MouseButtonEventArgs e) { var grid = _c1OlapPage.OlapGrid; var ht = grid.HitTest(e); if (ht.CellType == CellType.Cell && ht.Row > -1 && ht.Column > -1) { grid.ShowDetail(ht.Row, ht.Column); } }