I have a web application that is built with:
1- Backend is ASP.net MVC 5 (C#)
2- Frontend is HTML 5
, a CSS3
framework and jQuery
I want to change it to an executable that I can give out to my users. I've been looking around and I found that WPF
supports WebBrowser
control
<WebBrowser Height="200" Name="myWebBrowser"></WebBrowser>
I assume this is somewhat of an IE shell? as my application works with IE, Will this work for WPF? I need to be able to reference CSS classes, and JavaScript functions like you would do in a normal browser. Inline HTML/CSS will not be enough.
If WPF is not the way to go, is there any other way I can achieve this?