Provides data for the CellButtonClicked event of a Table
Наследование: XPTable.Events.CellEventArgsBase
Пример #1
0
		/// <summary>
		/// Raises the CellButtonClicked event
		/// </summary>
		/// <param name="e">A CellButtonEventArgs that contains the event data</param>
		protected internal virtual void OnCellButtonClicked(CellButtonEventArgs e)
		{
			if (this.CanRaiseEvents)
			{
				if (CellButtonClicked != null)
				{
					CellButtonClicked(this, e);
				}
			}
		}
Пример #2
0
 private void table_CellButtonClicked(object sender, CellButtonEventArgs e)
 {
     DoMyClickThing(e.CellPos);
 }