Question:

Whas is Winforms? Is there any terminology for Winforms?

by  |  earlier

0 LIKES UnLike

Is C# and winforms both are same?

 Tags:

   Report

1 ANSWERS


  1. .NETprovides WinnForm and other controls through base classes in the System.Windows.Formsname spacee. The class System.Windows.Forms.Form is the base class of allWin Formss in .NET. In order to design a windows application, we need: 1. Create a Windows Application project in Visual Studio.NET or add references to System.Windows.Forms and System.Drawing to your current project. If you are not using Visual Studio at all, use /reference option of the command line compiler to add these assemblies. 2. Write a new class to represent theWin Formm and derive it from System.Windows.Forms.Form class as class MyForm : System.Windows.Form

    {

    ...

    }

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.