Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to display data in datagrid in WPF on click of an add button, it adds the row in datagrid with some values from a combo box. Now the problem is that I am getting blank rows when I am giving ItemsSource from a datatable.(The number of rows are coming as blank as same number in datatable.)

In the code behind I am using : dataGridView1.ItemsSource = dtTable.DefaultView; In Xaml code is:

**DataGrid AutoGenerateColumns="True" Height="212" HorizontalAlignment="Left" Margin="276,131,0,0" Name="dataGridView1" VerticalAlignment="Top" Width="303" MouseDown="dataGridView1_MouseDown"

If dtTable is having 8 rows, then 8 blank rows are getting displayed in the datagrid

Please help.

share|improve this question
7  
There is absolutely now way anyone around here will be able to help you with so little data. Please try to improve your question by adding data concerning your working context (code, xaml, etc...) – Sisyphe Nov 21 '12 at 10:46
@Sisyphe: In the code behind I am using : dataGridView1.ItemsSource = dtTable.DefaultView; In Xaml code is: **DataGrid AutoGenerateColumns="True" Height="212" HorizontalAlignment="Left" Margin="276,131,0,0" Name="dataGridView1" VerticalAlignment="Top" Width="303" MouseDown="dataGridView1_MouseDown" If dtTable is having 8 rows, then 8 blank rows are getting displayed in the datagrid – user1841613 Nov 21 '12 at 12:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.