What about WPF and web development?

I don't know anything about WPF. so it occurred to me that when we develop applications in WPF that can be run as a web application without changing the code. Please comment. thanks.

+4
source share
4 answers

WPF runs on the client. This is what replaces WinForms. Silverlight was intended for the Internet. This is a subset of WPF, and it allows you to embed in a web page just like Flash.

For web development, I would recommend you ASP.NET MVC .

+6
source

WPF is a graphical user interface technology for a Windows client application. This way you cannot make web applications with WPF (I just say this is not quite so). If you want to create a browser-based application, you can use Silverlight, which is another solution. So to summarize. If you want to create software like Photoshop, use WPF. if you want to make a website (web applications are websites) use Silverlight (or javascript and HTML or Flash ...).

+2
source

See a variation of XBAP in WPF . See if it suits you.

+2
source

WPF is the best technology for developing windows. It is very easy to learn and use. Although not as mature as WinForms, it is definitely worth a try. I am developing a registry maintenance application and feel at home. You can use the following links to quickly capture this technology.

1) MSDN Documentation

2) WPF tutorials

3) WPF Application Examples

Good luck and happy learning.

+1
source

Source: https://habr.com/ru/post/1336560/


All Articles