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