Esempio n. 1
0
 /// <summary>
 /// Raises the <see cref="CellDoubleClick"/> event.
 /// </summary>
 /// <param name="e">Grid cell event arguments.</param>
 protected virtual void OnCellDoubleClick(GridCellMouseEventArgs e)
 {
     Properties.TriggerEvent(CellDoubleClickEvent, this, e);
 }
Esempio n. 2
0
File: Grid.cs Progetto: zzlvff/Eto
 /// <summary>
 /// Raises the cell double click event.
 /// </summary>
 public void OnCellDoubleClick(Grid widget, GridCellMouseEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCellDoubleClick(e);
 }