This question is locked. New answers and comments are not allowed.
Is it possible ?
I've tried the following code:
But it doesn't seems to work...
Any ideas ?
Thanks !
I've tried the following code:
| private void ConnectDoubleClickOnFooterRow() |
| { |
| this.FooterRow.ChildrenOfType<GridViewFooterCell>().ToList().ForEach(c => |
| { |
| var handler = new RoutedEventHandler(click_DoubleClickEvent); |
| c.RemoveHandler(GridViewCell.MouseDoubleClickEvent, handler); |
| c.AddHandler(GridViewCell.MouseDoubleClickEvent, handler); |
| }); |
| } |
But it doesn't seems to work...
Any ideas ?
Thanks !