Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where can I download the latest System.Windows.Forms.dll? [closed]

Tags:

c#

System.Windows.Forms.dll is located in the folder C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727.

I want to download the latest System.Windows.Forms.dll to replace the old one on my machine.

Does anyone know where can I download it?

like image 482
Biwier Avatar asked Oct 20 '10 02:10

Biwier


People also ask

How do I add a Windows Form DLL?

In Solution Explorer, right click on References node and select Add Reference menu item. On Browse tab, go to "C:\Program Files\Reference Assemblies\Microsoft\Framework\v3. 0" folder and select WindowsFormsIntegration. dll file and click OK button.

Are Windows Forms deprecated?

Win Form has been used to develop many applications. Because of its high age (born in 2003), WinForm was officially declared dead by Microsoft in 2014. However, Win Form is still alive and well.


1 Answers

If you're looking for .NET Framework 4 you can download it from http://msdn.microsoft.com/en-us/netframework/aa569263.aspx.

You can't replace System.Windows.Forms in the 2.0 directory with the 4.0 assembly. When you install the 4.0 framework it will create a new framework install location along side the 2.0 location (c:\windows\Microsoft.NET\Framework\v4.0.30319).

like image 193
Michael Shimmins Avatar answered Nov 15 '22 12:11

Michael Shimmins