Difference between winforms, web forms and window forms

I am currently working on developing C # windows applications. But I'm concerned that I want to know what is the difference between winforms in C #.

What is the difference between winforms and windows in C #?

thank

+3


source to share


1 answer


Winforms and Windows Forms are one and the same. Winforms is an abbreviated name for Windows Forms.

From Wikipedia :

Windows Forms (WinForms) is the name given to the graphical application programming interface (API) that is included with the Microsoft .NET Framework



More info from MSDN answer:

Based on my understanding, you want to know the difference between Developing Windows Based Applications and WinForms Using C #. A Windows-based application is an application developed under the Windows operating system, with the exception of such an application developed under another operating system such as Linux and Unix.

However, there are two kinds of Windows based applications: .net, WinForm & Web Application. you can develop several different kinds of Windows applications. You can create Windows Forms and Windows applications that leverage the power of the .NET Framework, or you can use Visual C ++ to create Windows Win32 applications.

However, a WinForm application is a kind of managed application, developed on the .Net platform. This is a Windows-based extension expression. The Windows Forms classes contained in the .NET Framework are intended to be used in a graphical interface. You can easily create command windows, buttons, menus, toolbars, and other screen elements with the flexibility you need to meet your business needs. The topics in this section provide detailed information on how to use the features that Windows Forms provides.

+6


source







All Articles