So in WinForms you can easily add a row, for example
dataGridView1.Rows.Add(user.Handle, c);
But in WPF, when I try to use a DataGrid there is no 'Rows' property. Is there any way to do this in WPF that doesn't consist of an insane amount of lines of code or a lot of messing with XAML?