I have a TableView that creates a CustomView containing a Panel with a hidden tag label, an image, 2 text lines and another label called lblDelete for deleting the current row (Positioned on the far right of the CustomView).
When I click on lblDelete it fires the lblDelete_Click event which must then delete that row in the Tableview. How do I find out what the rowindex of that particular Cell is though so I can call TableView.RemoveCell? I know you can call TableView.GetItems(SectionIndex).IndexOf(Cell)
from the TableView_SelectedChanged sub, but the lblDelete_Click overrides that call. Any suggestions?
When I click on lblDelete it fires the lblDelete_Click event which must then delete that row in the Tableview. How do I find out what the rowindex of that particular Cell is though so I can call TableView.RemoveCell? I know you can call TableView.GetItems(SectionIndex).IndexOf(Cell)
from the TableView_SelectedChanged sub, but the lblDelete_Click overrides that call. Any suggestions?