I have managed to get DataGrid to show new row for adding new item.
Problem i face now is i want data in the rest of wpf DataGrid to be read only a
Try this MSDN blog
Also, try the following example:
Xaml:
CS:
///
/// Interaction logic for MainWindow.xaml
///
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
var data = new Test { Test1 = "Test1", Test2 = "Test2" };
DataGridTest.Items.Add(data);
}
}
public class Test
{
public string Test1 { get; set; }
public string Test2 { get; set; }
}