• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Compatiability Question

JC0133

Senior member
I am using WPF/XAML in Microsoft Visual Studio 2013 to build a UI that will run on Windows XP.

Will WPF/XAML be compatible with XP?
 
WPF is written on top of .NET. As long as the user has the appropriate .NET framework installed, WPF will work. It looks like .NET 4 has support for XP.

By the way, I got this information from the first result of a google search for "wpf compatibility windows xp"
 
Thanks, I am still learning about this stuff but after some reading. It looks like MS Visual Studio 2013 uses .Net Framework 4.5 and XP doesn't support that.
 
Thanks, I am still learning about this stuff but after some reading. It looks like MS Visual Studio 2013 uses .Net Framework 4.5 and XP doesn't support that.
You can choose your framework when you create a new project. On the new project dialog window, it's at the very top.
 
As others have said, as long as the project targets .Net Framework 4.0 it will run on XP.

Keep in mind that when using WPF, there are default styles for the visuals, and the XP one by default is pretty horrible. It doesn't render in Luna or whatever the default skin of XP is, it runs more like Windows 2000/classic theme. You can override the style and hard-code an Aero theme in the project but keep that in mind.
 
Back
Top