Rhubarb
Rhubarb

Reputation: 3993

Is there any reason to switch to Visual Studio 2010 for Windows Forms development?

I can't find any new features or improvements for Windows Forms in Visual Studio 2010. Am I missing something? I guess there are new features to C# and other parts of .NET in general. Any reason specifically to the GUI development portion?

Upvotes: 4

Views: 240

Answers (3)

Mike Ohlsen
Mike Ohlsen

Reputation: 1900

Probably not any REAL must haves to require an upgrade, but lots of little things that may make your lives easier.

In .net 4.0 (thus used in VS 2010), the charting controls are built in, as opposed to having to install them manually. Not a ture reason to upgrade, but will make it easier if you use the charting controls. ScottGu's Post

In addition, other benefits to VS 2010 (not specific to WinForms, but will be beneficial) are Searching and Navigating improvements, Code Intellisense Improvements, Add Reference Improvements

Upvotes: 1

Guildencrantz
Guildencrantz

Reputation: 1915

Although it's not specific to GUI development IntelliTrace is reason enough for me to go to 2010: http://msdn.microsoft.com/en-us/library/dd264915(VS.100).aspx

If you have in-house users that test alpha or beta level versions of your application IntelliTrace is a great way to get more detail about what was happening during failures/unexpected situations.

Upvotes: 5

Jay
Jay

Reputation: 14441

I thought PEX was being added. I think it's valuable: Pex Tutorial

Upvotes: 6

Related Questions