Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the WPF browser application type project?

Tags:

wpf

When should one use the WPF browser application? What is the utility of this project type? When should a developer use this?

like image 776
Thomas Avatar asked Jan 24 '11 13:01

Thomas


2 Answers

A WPF Browser application is an app that runs in-browser as an XBAP (Xaml Browser Application).

You can find a little more information on the uses and reasons to use XBAPs here.

This thread on MSDN might help also.

like image 114
Daniel May Avatar answered Sep 28 '22 03:09

Daniel May


XBAP applications (if that is what you are refering to) require the client to have the .NET framework installed (as opposed to Silverlight that only requires the Silverlight plug-in)

This allows XBAP applications to use the entire functionality of the .NET framework which is much broader than Silverlight.

like image 23
Emond Avatar answered Sep 28 '22 02:09

Emond