Beispiel #1
0
        public override void CommitEditingStyle(UITableView tableView, UITableViewCellEditingStyle editingStyle, NSIndexPath indexPath)
        {
            //
            // In this method, we need to actually carry out the request
            //
            Section       section = Container.Root[indexPath.Section];
            StringElement element = section[indexPath.Row] as StringElement;

            section.Remove(element);

            HomeScreen dvc = Container as HomeScreen;

            dvc.DeleteTaskRow(indexPath.Row);
        }