Exemplo n.º 1
0
 /// <summary>
 /// Raises the cell double click event.
 /// </summary>
 public void OnCellDoubleClick(Grid widget, GridViewCellEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnCellDoubleClick(e));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Raises the cell edited event.
 /// </summary>
 public void OnCellEdited(Grid widget, GridViewCellEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnCellEdited(e));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Raises the <see cref="Grid.CellEdited"/> event
 /// </summary>
 /// <param name="e">Event arguments</param>
 protected virtual void OnCellEdited(GridViewCellEventArgs e)
 {
     Properties.TriggerEvent(CellEditedEvent, this, e);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Raises the <see cref="CellDoubleClick"/> event.
 /// </summary>
 /// <param name="e">Grid cell event arguments.</param>
 protected virtual void OnCellDoubleClick(GridViewCellEventArgs e)
 {
     Properties.TriggerEvent(CellDoubleClickEvent, this, e);
 }
Exemplo n.º 5
0
Arquivo: Grid.cs Projeto: zzlvff/Eto
 /// <summary>
 /// Raises the cell edited event.
 /// </summary>
 public void OnCellEdited(Grid widget, GridViewCellEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCellEdited(e);
 }