Does anyone *not* hate VS 2012's UI?

Started by
17 comments, last by verp 11 years, 4 months ago
Try the dark theme, the majority of people that dislike the stock theme much prefer dark, and some of them even like it better than VS2010's default. I don't find it much of a distraction myself, but I've had awhile to get used to it.

And if the caps menus bother you, you can do the registry tweak, just be careful about it.

throw table_exception("(? ???)? ? ???");

Advertisement

On the plus side, 2012 Express finally includes the built-in unit testing system, AND lets me mix C# and C++ like the previous paid versions. Woot!

Holy balls how did that slip under my radar. RAD.
The UI is bad but it's not a deal-breaker. For me the toolbar buttons are nowhere near as important as the Solution Explorer icons, and the inability to visually distinguish between different types of item there without a second, more careful, look is a major minus point but something I expect I'd eventually get used to.

Far worse is a general feeling of sluggishness in the code editor window. That's something that also affected 2010, with 2008 being the last version that was quite nippy.

All-caps menus are something that actually look OK on many products - Office 2013 doesn't suffer on account of using them, and it's easy to see the benefit there. That seems to indicate that they're not a good choice for traditional menu/toolbar oriented apps.

Personally I fail to see the need to update the UI of a tool like VS in this manner. Feature discovery and being able to quickly get at the commands you need to use are more important than visual consistency and any notions of "energy".

Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls.


Just installed Visual Studio 2012 at work on Friday, and I'd just like to say -- and I'm not someone who is big on complaining about this kind of stuff i.e. I generally like shiny new UIs with pretty graphics etc. -- that I don't think I've ever hated a user interface to anything more. I mean I just don't get it. Anyway, after googling "visual studio 2012 ugly" it seems that this is a pretty common reaction. Was wondering if anyone actually likes it?


Afer VS 2008, it all went to crap. Latest versions of Visual Studio are too slow and ugly for me.
Opening property sheets just to configure something are too slow. And those Intellisense files get
bigger and bigger every release. They create huge, bloated files.

Afer VS 2008, it all went to crap. Latest versions of Visual Studio are too slow and ugly for me.
Opening property sheets just to configure something are too slow. And those Intellisense files get
bigger and bigger every release. They create huge, bloated files.


Intellisense got overhauled for 2012.
My only wish is that I could make the intellisense files go to a customizable path. It stinks when you have to find it and delete it every time you want to share your source code and project files, or copy it all a file at a time by hand.

Also, while it was an eye-shock at first, I kind of like the UI - once you get into programming it really stays out of your way, and when I do need to use it, I've actually found most features easier to locate than before. Maybe it is because I am working on a laptop with a pixel resolution height of 768? I don't know. But it's nice to me :)

My only wish is that I could make the intellisense files go to a customizable path. It stinks when you have to find it and delete it every time you want to share your source code and project files, or copy it all a file at a time by hand.

I agree. To automate the deletion you can install cygwin and then execute this:
find . -name "*.sdf" -exec rm {} \;
Another (actually nicer) way is to use a version control system and not to check in those files. All you have to do to get a clean version is to check out your repo and zip that.


Does anyone *not* hate VS 2012's UI?
[/quote]
*raises hand* I actually like the new UI (in the dark theme). The only thing I found very annoying is the all-caps menu bar (but it's fixed now, thanks to regedit).
I don't hate it, I kind off like it actually. I hid the main menu and am using the blue theme though. What I do in all versions: hide the horizontal scroll- and status bar, display line numbers and put solution explorer on auto hide. This increases amount of code visible on screen significantly.

I also like how single clicking in the solution window opens a temporary tab, same goes for when you jump to function definitions and searching through a solution. Double clicking opens the file and now leaves the solution explorer shown, I like this change as well.

My only dislike is the stupid intellisense, I'm used to Visual Assist X, which is better at picking stuff that makes sense. Auto completion behaviour seems weird as well, I'm used to pressing the return key for completion, but Visual Studio sometimes doesn't have an item selected from the list which results in a newline -.-'.

I just want Ctlf+F to pop up the old style search dialog.


If I missed someone providing this information already I apologize, but you can do a CTRL+SHIFT+F to search the entire solution and it uses the familiar dialog you are looking for. At least, it does for me.

This topic is closed to new replies.

Advertisement