DataGrid's New Row Disappears if Editing and Switching Tabs on TabControl

1.2k Views Asked by At

I have a WPF TabControl object in my application created through XAML. Also created through XAML, is one TabItem that contains a DataGrid. In my application, the user can create new Tabs for that TabControl. When this happens, a DataGrid is created for that new TabItem. So the application could end up containing several TabItems with DataGrids, even though I only create one TabItem with a DataGrid through XAML.

I am seeing an issue that if the user wants to add a new row in the DataGrid, but then decides to switch to a different Tab, the DataGrid is missing the new row when the user returns to that Tab. So then it is impossible to add new rows to the DataGrid. The weird thing is, is that this issue happens only on the DataGrids that are dynamically created for the dynamic TabItems. So this issue is not present in the DataGrid that was created through XAML. Has anyone seen this issue before?

2

There are 2 best solutions below

0
On BEST ANSWER

Turn out there is a question that was very similar to this one here on Stack Overflow. Here is a link to it. The accepted answer is the one that resolved the issue for me.

TabControl with Datagrid

0
On

It appears that you need to commit all your edits in the grid before changing tabs. Here is a nice workaround that I found quite useful:

// PreviewMouseDown event handler on the TabControl
private void TabControl_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
    if (IsUnderTabHeader(e.OriginalSource as DependencyObject))
        CommitTables(yourTabControl);
}

private bool IsUnderTabHeader(DependencyObject control)
{
    if (control is TabItem)
        return true;
    DependencyObject parent = VisualTreeHelper.GetParent(control);
    if (parent == null)
        return false;
    return IsUnderTabHeader(parent);
}

private void CommitTables(DependencyObject control)
{
    if (control is DataGrid)
    {
        DataGrid grid = control as DataGrid;
        grid.CommitEdit(DataGridEditingUnit.Row, true);
        return;
    }
    int childrenCount = VisualTreeHelper.GetChildrenCount(control);
    for (int childIndex = 0; childIndex < childrenCount; childIndex++)
        CommitTables(VisualTreeHelper.GetChild(control, childIndex));
}