Quite curious, but was just wondering if anyone knows the difference between using:
System.Windows.Forms.SaveFileDialog (in Assembly System.Windows.Forms.dll) and Microsoft.Win32.SaveFileDialog(in Assembly PresentationFramework.dll)?
I use the PresentationFramework.dll version within the WPF form, but am currently re-using some old code in the form which includes showing the System.Windows.Forms.dll version and wondering if:
- there is a subtle difference between their appearance?
- any interoperability issues with using the System.Windows.Forms.SaveFileDialog? Or are both these just win32 dialogs anyway?
- is this just to do with using Microsoft.Win32.SaveFileDialog has issues in windows vista?
Thanks in advance.