日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

FormShortCut MainForm 和 二级FORM

發(fā)布時間:2025/7/14 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 FormShortCut MainForm 和 二级FORM 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

發(fā)現(xiàn),主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的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。