Exemplo n.º 1
0
 public virtual void OnCellFormatting(GridCellFormatEventArgs e)
 {
     if (_CellFormatting != null)
     {
         _CellFormatting(this, e);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Raises the cell formatting event.
 /// </summary>
 public void OnCellFormatting(Grid widget, GridCellFormatEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnCellFormatting(e));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Raises the <see cref="Grid.CellFormatting"/> event
 /// </summary>
 /// <param name="e">Event arguments</param>
 protected virtual void OnCellFormatting(GridCellFormatEventArgs e)
 {
     Properties.TriggerEvent(CellFormattingEvent, this, e);
 }
Exemplo n.º 4
0
		public virtual void OnCellFormatting (GridCellFormatEventArgs e)
		{
			if (_CellFormatting != null)
				_CellFormatting (this, e);
		}
Exemplo n.º 5
0
		/// <summary>
		/// Raises the <see cref="Grid.CellFormatting"/> event
		/// </summary>
		/// <param name="e">Event arguments</param>
		public virtual void OnCellFormatting(GridCellFormatEventArgs e)
		{
			Properties.TriggerEvent(CellFormattingEvent, this, e);
		}
Exemplo n.º 6
0
Arquivo: Grid.cs Projeto: zzlvff/Eto
 /// <summary>
 /// Raises the cell formatting event.
 /// </summary>
 public void OnCellFormatting(Grid widget, GridCellFormatEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCellFormatting(e);
 }