This question is locked. New answers and comments are not allowed.
How can I obtain a reference to a GridViewRow given the underlying data object?
private void btnAdd_Click(object sender, RoutedEventArgs e)
{
CounterParty counterParty = this._viewModel.InsertNewItem();
GridViewRow gvr = "...";
}
The ultimate objective is to call BeginEdit on the row after insert.
Thanks!