Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

Is it possible to create a Windows app which displays the web pages inside it, but the user won't feel that they are on a website but a windows web app?

This is because we have already a running mobile website, which is used as mobile app in ios. We would like to create a web app for windows which eventually calls the same website.

Thanks,
Jyotish
Posted

1 solution

Hi
You can load a web url in windows application using 'WebBrowser' control. This is a common control in Windows Application.

C#
webBrowser1.Navigate("www.google.com");
will give you google web site opened in your windows application.
 
Share this answer
 
Comments
Chandrashekar SK 23-Nov-12 6:29am    
Yes creating an application with a browser control and hiding navigation controls will make app webapp :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900