All Tags »
Insertion Row »
EndEdit (RSS)
Sorry, but there are no more tags available to filter with.
-
My current solution:
Get the InsertionRow from the Loaded-event:
private InsertionRow m_InsertionRow;private void InsertionRowLoaded(object sender, RoutedEventArgs args){ m_InsertionRow = sender as CustomInsertionRow;}
Call EndEdit separately on the InsertionRow:
...