'宣言 Public Event DoubleClickCell As DoubleClickCellEventHandler
public event DoubleClickCellEventHandler DoubleClickCell
イベント ハンドラが、このイベントに関連するデータを含む、DoubleClickCellEventArgs 型の引数を受け取りました。次の DoubleClickCellEventArgs プロパティには、このイベントの固有の情報が記載されます。
プロパティ | 解説 |
---|---|
Cell | ダブルクリックされたグリッドのセルを返します。 |
Private Sub ultraGrid1_DoubleClickCell(sender As Object, e As Infragistics.Win.UltraWinGrid.DoubleClickCellEventArgs) Handles Me.ultraGrid1.DoubleClickCell ' Check to see if the user double-clicked on a cell in the "OrderDetails" column. ' If e.Cell.Column.Key = "OrderDetails" Then ' Create an instance of a custom dialog box which shows details about ' the order contained in the row of the cell that was clicked on. ' Dim dlg As New OrderDetailsDialog() dlg.OrderRow = e.Cell.Row ' Show the custom dialog box. ' dlg.ShowDialog() End If End Sub
private void ultraGrid1_DoubleClickCell(object sender, Infragistics.Win.UltraWinGrid.DoubleClickCellEventArgs e) { // Check to see if the user double-clicked on a cell in the "OrderDetails" column. // if( e.Cell.Column.Key == "OrderDetails" ) { // Create an instance of a custom dialog box which shows details about // the order contained in the row of the cell that was clicked on. // OrderDetailsDialog dlg = new OrderDetailsDialog(); dlg.OrderRow = e.Cell.Row; // Show the custom dialog box. // dlg.ShowDialog(); } }