views:

30

answers:

1

I have a web application, I would like to embed the web application in the window application..

Like if i click the icon in the windows, it should open a window along with that site.. Need to disable the right click and menu properties and every thing..

Some one told that we can do it via .Net.. Is there any other way to do that.. Could you please explain how to do this?

+1  A: 

You can embed a WebBrowser control on a windows form. From there you can do a lot of things such as access the DOM and actually control the browser. Microsoft has a nice overview although that is for C++/VB programmers. The .NET documentation might help you translate from one to the other. And there is a decent beginner's tutorial at c-sharpcorner.

Michael Bray