Пример #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);
 }
Пример #2
0
Файл: Grid.cs Проект: zzlvff/Eto
 /// <summary>
 /// Raises the cell double click event.
 /// </summary>
 public void OnCellDoubleClick(Grid widget, GridCellMouseEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCellDoubleClick(e);
 }