WPF DataGrid cannot Add a row when datasource is empty

Trindaz picture Trindaz · Jan 16, 2010 · Viewed 8.3k times · Source

CanUserAddRows="True" only 'works' when there's already data in the ItemsSource of the DataGrid. If it just so happens that there are no rows in the original list of items, then the DataGrid doesn't display a placeholder row for entering new items, even though I've set CanUserAddRows="True". Why?!

Thanks in advance, Trindaz

Answer

serge_gubenko picture serge_gubenko · Jan 16, 2010

This seem to be a known issue with WPF DataGrid. See discussion here (starting from the 4th comment) Also it seem to be fixed in .net 4. I've made some tests for this issue on 3.5 and 4 (beta2) frameworks. Pls, see results below:

First I defined 3 types of item collections:

public class TestGridItems0 : ArrayList
{
}

public class TestGridItems1 : List<TestGridItem>
{
}

public class TestGridItems2<T> : List<TestGridItem>
{
}

where TestGridItem is below:

public class TestGridItem
{
    public string One { get; set; }
    public string Two { get; set; }
    public string Three { get; set; }
}

.net 3.5

TestGridItems0 and TestGridItems1 didn't show an empty line for an empty collection; where as TestGridItems2 did work fine.

.net 4

only TestGridItems0 didn't show the line for the empty collection; other 2 worked fine.

xaml for the grid:

<my:DataGrid Name="dataGrid" AutoGenerateColumns="False" CanUserAddRows="True">
    <my:DataGrid.Columns>
        <my:DataGridTextColumn Binding="{Binding One}" Header="One" />
        <my:DataGridTextColumn Binding="{Binding Two}" Header="Two" />
        <my:DataGridTextColumn Binding="{Binding Three}" Header="Three" />
    </my:DataGrid.Columns>
</my:DataGrid>

below is how items source was assigned:

dataGrid.ItemsSource = new TestGridItems0();
dataGrid.ItemsSource = new TestGridItems1();
dataGrid.ItemsSource = new TestGridItems2<TestGridItem>();

hope this helps, regards