Provides data for the CellButtonClicked event of a Table
Inheritance: XPTable.Events.CellEventArgsBase
コード例 #1
0
ファイル: Table.cs プロジェクト: nithinphilips/SMOz
		/// <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
ファイル: Demo.cs プロジェクト: adarmus/XPTable
 private void table_CellButtonClicked(object sender, CellButtonEventArgs e)
 {
     DoMyClickThing(e.CellPos);
 }