コード例 #1
0
ファイル: Grid.cs プロジェクト: modulexcite/Eto-1
 public virtual void OnCellFormatting(GridCellFormatEventArgs e)
 {
     if (_CellFormatting != null)
     {
         _CellFormatting(this, e);
     }
 }
コード例 #2
0
ファイル: Grid.cs プロジェクト: CheckTech/Eto
 /// <summary>
 /// Raises the cell formatting event.
 /// </summary>
 public void OnCellFormatting(Grid widget, GridCellFormatEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnCellFormatting(e));
 }
コード例 #3
0
ファイル: Grid.cs プロジェクト: CheckTech/Eto
 /// <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);
 }
コード例 #4
0
ファイル: Grid.cs プロジェクト: majorsilence/Eto
		public virtual void OnCellFormatting (GridCellFormatEventArgs e)
		{
			if (_CellFormatting != null)
				_CellFormatting (this, e);
		}
コード例 #5
0
ファイル: Grid.cs プロジェクト: alexandrebaker/Eto
		/// <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);
		}
コード例 #6
0
ファイル: Grid.cs プロジェクト: zzlvff/Eto
 /// <summary>
 /// Raises the cell formatting event.
 /// </summary>
 public void OnCellFormatting(Grid widget, GridCellFormatEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCellFormatting(e);
 }