Porting a C Winforms project to WPF
I have written a smallish app for the company I currently work for in C# winforms. I really want to deevlop some WPF skills, so I am going to attempt to port what I have written over to WPF.
My code relies on a number of dll#s written in VB.net and C++(marshalled), will WPF still support this? The VB.net code开发者_如何学C returns treeviews and datasets, are these still valid in WPF?
Thanks
Yes, you should be just fine. WPF and WinForms are just for presentation. The rest of your code will all be the same. However, your code for presenting these treeviews and datasets to the user will probably have to change.
精彩评论