Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF DataGrid cannot add a row when DataSource is empty

Tags:

wpf

datagrid

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

How can I fix this problem?

like image 940
Trindaz Avatar asked Jan 16 '10 00:01

Trindaz


2 Answers

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

like image 126
serge_gubenko Avatar answered Oct 02 '22 19:10

serge_gubenko


Add an empty item to your ItemsSource and then remove it. You may have to set CanUserAddRows back to true after doing this. I read this solution here: (Posts by Jarrey and Rick Roen)

I had this problem when I set the ItemsSource to a DataTable's DefaultView and the view was empty. The columns were defined though so it should have been able to get them. Heh.

like image 39
Mike Blandford Avatar answered Oct 02 '22 20:10

Mike Blandford