First, let me say that I abominate this feature in Windows Vista and Windows 7. Second, I want to do it. Here is a question asking how to do what I want here, in WPF.

I want to do the same thing, but in Delphi, using VCL stock components, TMainMenu or Action Manager menus, or some available third party components, even Toolbar2000 or some other library.

Feature of Windows Vista/Windows 7 explorer main-menus:

  • it's not visible when the app starts
  • pressing and releasing Alt makes it visible
  • pressing and releasing Alt again makes it invisible again
  • repeatable.
  • hotkeys work on menu items, even when menu is invisible*

(* Windows Explorer Hotkeys Example: Ctrl+A in Microsoft Windows Explorer selects all even when the menus are invisible, Alt+T = bring up Tools popup menu, even when the whole menu is hidden).

enter image description here

Update: Demo using accepted answer can be downloaded here. (HiddenMenu.zip)

link|improve this question

I love your honesty! – Gerry Coll Jun 25 '11 at 7:18
There are lots of features in Windows Explorer that I abominate. hide extensions for known/registered file types, "simplified file sharing", and the 9-levels-deep you need to go into dialogs to change the NTFS file permissions are some of my "least favorites". :-) – Warren P Jun 25 '11 at 21:43
feedback

1 Answer

up vote 23 down vote accepted

Use a TMainMenu with a TActionList as usual.

Then do

procedure TForm1.FormShow(Sender: TObject);
begin
  Self.Menu := nil;
end;

(or simply remove the Menu association at design time) and

procedure TForm1.FormKeyDown(Sender: TObject; var Key: Word;
  Shift: TShiftState);
begin
  if (Key = VK_MENU) or (Key = VK_F10) then
    Menu := MainMenu1;
end;

and

procedure TForm1.WndProc(var Message: TMessage);
begin
  inherited;
  case Message.Msg of
    WM_EXITMENULOOP:
      SetMenu(Handle, 0);
  end;
end;

Don't forget to set the form's KeyPreview to true.

(Notice that, since the shortcuts are handled by the TActionList, they work even if the menu is 'gone'.)

link|improve this answer
6  
+1 Nice work !! – David Heffernan Jun 24 '11 at 14:49
@David: Not as nice as one would like... It seems like the action isn't fired if you click the menu item. I am working on it... – Andreas Rejbrand Jun 24 '11 at 14:50
+1 for WM_EXITMENULOOP – Cosmin Prund Jun 24 '11 at 14:52
Not sure, but isn't there a Key := 0; missing inside the if-clause in FormKeyDown? – Uwe Raabe Jun 24 '11 at 15:37
@Uwe: No, you want the default behaviour as well. – Andreas Rejbrand Jun 24 '11 at 15:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.