Esempio n. 1
0
 public virtual void OnCellFormatting(GridCellFormatEventArgs e)
 {
     if (_CellFormatting != null)
     {
         _CellFormatting(this, e);
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Raises the cell formatting event.
 /// </summary>
 public void OnCellFormatting(Grid widget, GridCellFormatEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnCellFormatting(e));
 }
Esempio 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);
 }
Esempio n. 4
0
		public virtual void OnCellFormatting (GridCellFormatEventArgs e)
		{
			if (_CellFormatting != null)
				_CellFormatting (this, e);
		}
Esempio 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);
		}
Esempio n. 6
0
File: Grid.cs Progetto: zzlvff/Eto
 /// <summary>
 /// Raises the cell formatting event.
 /// </summary>
 public void OnCellFormatting(Grid widget, GridCellFormatEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCellFormatting(e);
 }