> Hi friends,
>
[quoted text clipped - 3 lines]
> 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.

Signature
Happy Coding!
Morten Wennevik [C# MVP]
Peter Duniho - 17 Mar 2008 18:24 GMT
>> Please help me on this. May i know difference between "winforms Vs
>> Windows based application developement" using c#.
[quoted text clipped - 3 lines]
> 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.
.........
> Hi friends,
>
[quoted text clipped - 3 lines]
> thanks
> pavan