I have a windows form application in which I need to use Listview control from WPF. I am trying to add Icon and text in a list view, it is a view of completed or failed tasks with some text. I cannot use xaml so need to so it programatically. I am doing following
this.listViewComponents.Items.Add(new MyObject(Properties.Resources.Failed,"Failed"));
in the final listview, i see only assembly name and do not see Icon followed by "Failed" text. Am I missing someting?. Please help !!!