winforms Vs Windows based applications

  • Thread starter Thread starter pavan2004
  • Start date Start date
P

pavan2004

Hi friends,

Please help me on this. May i know difference between "winforms Vs
Windows based application developement" using c#.

thanks
pavan
 
pavan2004 said:
Hi friends,

Please help me on this. May i know difference between "winforms Vs
Windows based application developement" using c#.

thanks
pavan

Well, WinForms is a framework for creating windows based applications in
..Net. This is not the only one as with .Net Framework 3.0 you can use WPF
(Windows Presentation Foundation) instead.

WinForms relates to C# as MFC (Microsoft Foundation Class) relates to C++.
Both are built upon Win32/GDI
WPF differs from WinForms as it builts upon 3D-graphics rather than 2D.
 
Well, WinForms is a framework for creating windows based applications in
.Net. This is not the only one as with .Net Framework 3.0 you can use
WPF
(Windows Presentation Foundation) instead.

Heck, for that matter I suppose you could use the unmanaged Windows API
via p/invoke in C# if you really wanted to.

To elaborate on Morten's reply, generally when you see someone talking
about "WinForms" or some variant of the term, they are referring to the
classes found in .NET in the System.Windows.Forms namespace.

In the context of C#, I would not say that there _is_ a clear difference
between "winforms" and "Windows based application development". The
latter is, to me, a broader term that includes "winforms" and any other
method for writing GUI applications on Windows. Alternatively, I would
say that even with the existence of WPF, if you say that you're writing a
Windows application in C# and don't provide any further qualification, the
usual assumption is that you're using the Forms namespace (though
obviously that assumption could be incorrect).

Pete
 
My syntax would differentiate between

"winforms application" Versus a "web based app" or "web application".
...

To me, both fall under .Net.

..........
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top