Reputation: 1
I would like to ask you if anyone knows whether MS is willing to let GUI creation for WPF for other languages, in a practical way, like for example in C++. Is the upcoming WPF version adding new features on this topic?
Thanks
Upvotes: 0
Views: 448
Reputation: 2908
Well, the simple answer is that WPF is a managed UI framework, so can be used from any managed (.NET) language, such as VB.NET, C#, C++/CLI (managed C++), F#, IronRuby, IronPython, etc. It may not be terribly useable in managed C++ though. The best language for most WPF programming is the declarative XAML language, and tools like Expression Blend for generating it.
Upvotes: 2