问题:将 Frame 含 PopupMenu 放置 Form 后,在 Frame 里的 PopupMenu 失效,无法按快捷键。
适用:(XE7 update 1 / XE8) for Windows 平台
修正方法:
请将源码 FMX.Forms.pas 复制到自己的工程目录里,再进行修改。
找到 TCommonCustomForm.KeyDown 函数,修改如下:
procedure TCommonCustomForm.KeyDown(var Key: Word; var KeyChar: System.WideChar; Shift: TShiftState);..... 省略 ......{+++>}// 遍历所有的 Menufunction FindMenu(c: TFmxObject): TFmxObject;var i: Integer;beginif c is TFmxObject thenfor i:=0 to TFmxObject(c).ChildrenCount - 1 dobeginif TFmxObject(c).Children[i] is TMainMenu thenTMainMenu(TFmxObject(c).Children[i]).DialogKey(Key, Shift)else if TFmxObject(c).Children[i] is TPopupMenu thenTPopupMenu(TFmxObject(c).Children[i]).DialogKey(Key, Shift);FindMenu(TFmxObject(c).Children[i]);end;end; {<+++}varControl: IControl; begin..... 省略 ......// 3. perform key in other Menusfor I := ChildrenCount - 1 downto 0 doif Children[i] <> FocusPopup thenbegin{+++>} FindMenu(Children[I]); // 加入这行:遍歷所有的 Menuif Children[I] is TMainMenu thenTMainMenu(Children[I]).DialogKey(Key, Shift)else if Children[I] is TPopupMenu thenTPopupMenu(Children[I]).DialogKey(Key, Shift);if Key = 0 thenExit;end;..... 省略 ......end;