Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I create a Windows Control Library project in Visual Studio?

i was trying to complete a tutorial on custom controls and all of the tutorials that ive found say that you have to choose a project template called "windows control library". I don't have that template as an option! I am using VS2010 professional. Any ideas?

like image 512
Sinaesthetic Avatar asked Oct 30 '25 06:10

Sinaesthetic


1 Answers

The "Windows Control Library" project template is used to quickly get started creating custom controls for use in Windows Forms (WinForms) applications. It creates a project that is automatically populated with the necessary references and files.

  1. To create a new project of this type, you first have to pick one of the .NET languages—it doesn't matter which—either C#, VB.NET or C++/CLI.

  2. Then, select the "Windows" category to narrow down the scope of the project types that are listed.

  3. Finally, select the project type called "Windows Forms Control Library".

   

like image 119
Cody Gray Avatar answered Oct 31 '25 22:10

Cody Gray