Hide Main Menu

Free

Automatically hides the Visual Studio main menu when not in use, similar to Windows Explorer and Internet Explorer.

(69) Review
Visual Studio
2012, 2010
Download (45,663)
9/17/2011
1.1
E-mail Twitter del.icio.us Digg Facebook
Add To Favorites
Description
Reviews (69)
Q and A (5)
Sign in to Write a Review
Sort By:

by D. Chatterjee | Mon 6:28 AM

Sometimes an extra inch visibility in the screen helps save lot scrolling time, more over its free

by 爱让一切都对了 | January 30 2013

Good!

by MelchiorCorgie | January 16 2013

by MarchyB | December 12 2012

Amazing. Works exactly as it should!

by Binori | October 17 2012

by Noah Coad | October 06 2012

Fantastic! Love the clean look with the main menu hidden. Full-screen model looks particularly 'clean'. :) Thanks Matthew!

by Exe.Cute | October 03 2012

Pretty fucking awesome

by Mr Konrad Sikorski | October 03 2012

by bsivanov | September 26 2012

by Ivan Zlatev | September 24 2012

by imparente | September 16 2012

very usefull

by BillW33 | August 31 2012

Fantastic idea! I like having all the real estate I can get. :)

by Whyllee | July 25 2012

The UI looks much more professional with this plug in. It should be included in the Visual Studio box.

by Benninger | July 10 2012

Does what it says - simple, but useful :)

by Melku | July 05 2012

Does the job. And it's a wonderful job!

by Liquid_khaos | June 13 2012

More real estate is MO bettah! thanks.

by JoshMatthews | June 13 2012

by fds彭伟 | June 11 2012

It's so good

by Mr. Wharty | June 08 2012

Why is this an add-in? It should be a standard feature in VS

by cpmcgrath | June 06 2012

1 - 20 of 69 Items   
Sign in to Start a Discussion


  • Add option to enable for different modes
    1 Posts | Last Post March 26, 2013
    • I Think it would be really nice to be able to enable/disable the hiding of the main menu based on the mode of Visual Studio. For example I would like the menu to be visible for normal and debug mode but hidden when switching to full screen mode. 
  • Suggested Improvement
    6 Posts | Last Post January 30, 2013
    • Great extension, I love it.
      The only thing I would suggest is if you can make it so when the mouse cursor is close to where the main menu is it will un-hide it.  That way you can either use the hotkeys or use the mouse to show it.
      
      Travis
    • vote +1, this would be sweet!
    • vote +1, this would be sweet!
    • +1
    • idea++
    • If so, there may incur difficulty clicking toolbar icons.
  • Can we hide title bar too?
    1 Posts | Last Post August 21, 2012
    • This tool is nice. Would be more helpful if has an option to hide title bar too
  • Alt - m Conflict
    2 Posts | Last Post May 26, 2010
    • Nice utility!  However, on the Theme menu, the use of Alt-m as a hotkey conflicts with the Alt-m on the Team menu for those of us who are using Team Foundation System.
    • Oops, sorry... wrong extension.
  • There's a bug when you ALT shortcut keys
    2 Posts | Last Post April 27, 2010
    • This may not be a common problem but it's a bug nonetheless:
      
      Reproduce:
      
      * Gets the latest VS2010 bits
      * Use the `C#` environment profile
      * Assign `[SHIFT]+[ALT]+[F]` to `Project.NewFolder` in Keyboard shortcut options dialog.
      * Install the Hide Menu extension and restart VS2010
      * Load any project and click inside the Solution Explorer
      * Hit `[SHIFT]+[ALT]+[F]`.
      
      Expected: New folder is created.
      What happens: The menu is shown.
      
      Presumably because Hide Menu hi-jacked the shortcut or the focus somehow left the Solution Explorer before it has received the key combination.
      
      Anyway, please fix it if you can... nice extension :)
      Always love to maximize screen real estate.
      
      But I have lots of custom shortcuts and this is a deal breaker. ([SHIFT]+[ALT]+[C] is also the default shortcut for `new class` in default C# profile)
    • That's interesting, I was unable to reproduce that behavior on my machine (with VS 2010 RTM).  Is it at all possible your Shift key was stuck?  Is it possible there are other extensions that could interfere with keyboard input?  I even tried mapping Alt F to Project.NewFolder, and Alt F only creates a new folder without showing the menu.
      
      I do see this behavior when the command is disabled (for example, if a code file is focused instead of the Solution Explorer), but that's expected behavior.
      
      If this does repro, though, I don't believe it is the extension's fault, as the extension doesn't hijack any keyboard input.  The extension works by making the Menu's Height 0 when the Menu doesn't have focus, and adds GotKeyboardFocus and LostKeyboardFocus event handlers to the Menu.  When the menu gets focus, the fixed height is cleared.  When the menu loses focus, the Height is set back to 0.  Everything else (including all keyboard input) works as it would if the extension weren't installed.