FormShortCut MainForm 和 二级FORM
生活随笔
收集整理的這篇文章主要介紹了
FormShortCut MainForm 和 二级FORM
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
發現,主FORM 定義的快捷鍵,在二級FORM里也有效。
?
反過來,就無效。
?
這樣的話,就要考慮 快捷鍵的沖突問題 了,本來以為不同的FORM 是獨立的。
?
?
http://codeverge.com/embarcadero.delphi.vcl.using/shortcuts-of-the-main-form-acces/1076501
?
John Schmidt wrote:> Hi, > > I experience problems when using keys in nonmodal shown SDI forms of > the application if they are used as shortcuts in the main form. Iif > the sub-form is shown modal than all works fine. How can I work > around this 'feature'? - It's URGENT! - Thanks!The behaviour is actually intentional, it is for the support of typical SDI apps where only the main form has a menu that is "shared" by the child forms (an app like the IDE itself). Quite a bit of the VCL behaviour is dictated by the requirements of the IDE...To fix this problem you have to override the main form's IsShortcut method, like this:publicfunction IsShortCut(var Message: TWMKey): Boolean; override;function TMainform.IsShortcut( Var Message: TWMKey ): Boolean; beginif Screen.Activeform <> self thenResult := falseelseResult := inherited IsShortcut(Message); end; This way the main form will only process shortcuts when it itself is the active form.-- Peter Below (TeamB) Don't be a vampire (http://slash7.com/pages/vampires), use the newsgroup archives : http://codenewsfast.com http://groups.google.com轉載于:https://www.cnblogs.com/CodeGear/p/4261703.html
總結
以上是生活随笔為你收集整理的FormShortCut MainForm 和 二级FORM的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [转]Java 8:不要再用循环了
- 下一篇: Queue 的用法