I'm not very familiar with WPF, and I use it with F#. The scenario is that I have a dataset with parentID that I'd like to display in a treeview. (For the little story, the rows are snapshots coming from a scvmm VM)
I have a working code that uses an enumerator of the dataset and populates the treeview, however I'd like to use a XAML binding instead. I found WPF how to bind self-referential dataset to a treeview that deals with the exact same in C#, but it uses partial classes that I'm unable to directly translate into F#.
Is this possible, did I follow the wrong avenue trying to translate the above solution, or am I simply missing knowledge on F#/WPF internals?
Thanks a bunch for any pointer!