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.