Hi All,
I am new to WPF. I would like to bind existing class to ListView. I've read MSDN's articles, however I still can't figure out the best way to do that.
I have a class which is defined by WSDL. It is returned via callback to async server call, so there is not much I can do with the class itself. The class is fairly simple and it contains an array of doubles that I'd like to display in ListView.
Binding examples that that I've found instantiate class in WPF itself, however it's not an option here.
How do I bind this array to ListView? Is it possible to do in WPF? How do I go about it?
Thanks.