'Declaration Public Event DoubleClickRow As DoubleClickRowEventHandler
public event DoubleClickRowEventHandler DoubleClickRow
The event handler receives an argument of type DoubleClickRowEventArgs containing data related to this event. The following DoubleClickRowEventArgs properties provide information specific to this event.
Private Sub ultraGrid1_DoubleClickRow(sender As Object, e As Infragistics.Win.UltraWinGrid.DoubleClickRowEventArgs) Handles Me.ultraGrid1.DoubleClickRow If e.Row.Band.Key = "customers" And e.RowArea = RowArea.RowSelectorArea Then Dim dlg As New CustomerInfoDialog(e.Row) dlg.ShowDialog() End If End Sub
private void ultraGrid1_DoubleClickRow(object sender, Infragistics.Win.UltraWinGrid.DoubleClickRowEventArgs e) { if( e.Row.Band.Key == "customers" && e.RowArea == RowArea.RowSelectorArea ) { CustomerInfoDialog dlg = new CustomerInfoDialog( e.Row ); dlg.ShowDialog(); } }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2