I created a datagrid(drag and drop) in a wpf application. I then went through the properties window to add the columns manually.
I want to now add rows to this datagrid through my code behind. I would have thought you would make a
DataGridRow row = new DataGridRow();
and then through maybe a Items.Add() or something you would add your values(one for each column).
I am not seeing this so I am wondering how do I do this.
I know I should be like databinding and stuff but I new to wpf and I am making a quick and dirty application and I rather just go with a forloop and make the rows manually.
I rather come back and refactor the area if I ever feel the desire too. I really just want what I am making up and running so I can use it asp.