MonoTouch.Dialog.DialogViewController.AccessorySelected C# (CSharp) Method

AccessorySelected() public method

public AccessorySelected ( NSIndexPath indexPath ) : void
indexPath NSIndexPath
return void
		public virtual void AccessorySelected (NSIndexPath indexPath)
		{
			var section = root.Sections [indexPath.Section];
			var element = section.Elements [indexPath.Row];
			
			element.AccessorySelected (this, tableView, indexPath);
		}

Usage Example

示例#1
0
 public override void AccessoryButtonTapped(UITableView tableView, NSIndexPath indexPath)
 {
     Container.AccessorySelected(indexPath);
 }