I can add items just fine BUT as soon as I even think about trying other columns...
ListViewItem listItem = new ListViewItem();
listItem.Content = feed.Title.Value;
lvLately.Items.Add(listItem.Content);
listItem.Content = feed.Link.Value;
lvLately.SubItems.Add(listItem.Content);
ListViewItem lvLately = new ListViewItem("Bob");
lvLately.SubItems.Add("13");
lvLately.SubItems.Add("Other stuff");
Error 1 'System.Windows.Controls.ListView' does not contain a definition for 'SubItems' and no extension method 'SubItems' accepting a first argument of type 'System.Windows.Controls.ListView' could be found (are you missing a using directive or an assembly reference?) C:\Users\Tommo\documents\visual studio 2010\Projects\Morning\Morning\MainWindow.xaml.cs 185 34 Morning