Главная страница
    Top.Mail.Ru    Яндекс.Метрика
Форум: "Основная";
Текущий архив: 2004.02.06;
Скачать: [xml.tar.bz2];

Вниз

Немодальная форма и Shortcuts в главной форме   Найти похожие ветки 

 
Sir Alex   (2004-01-25 02:19) [0]

В главной форме есть меню (главное и контексные) с назначенными shortcuts. Создаю немодальную форму. Находясь в этой форме при нажатии любой shortcut кнопки от главного окна она почему-то срабатывает, хотя ее никто и не просил...

Т.е. как отключить shortcuts главной формы, когда я нахожусь в немодальной?


 
Sir Alex   (2004-01-25 03:56) [1]

Вот и ответ:

Solution / workaround
By Ray Lischner
You can set a message hook for the main form, to intercept these messages, and prevent them from reaching the main form. That lets the child form handle the keyboard events normally.
To set the hook, read about TApplication.HookMainWindow in the on-line documentation. Unfortunately, the Cm_AppKeyDown and Cm_AppSysCommand messages are not documented (Note: They are documented in Ray Lischner"s book "Secrets of Delphi 2"). To handle these messages, the hook function returns True, saying that the message has been handled, but the handler leaves the message Result as 0, which tells the child form to continue processing the message normally.
For example:


function TMainForm.AppKeyDownHook(var Msg: TMessage): Boolean;
begin
case Msg.Msg of
Cm_AppkeyDown:
Result := True; { test here whether to act locally }
Cm_AppSysCommand:
Result := True; { test here whether to act locally }
else
Result := False; { event will go to the parent"s main menu }
end;
end;
procedure TMainForm.FormCreate(Sender: TObject);
begin
Application.HookMainWindow(AppKeyDownHook)
end;



Страницы: 1 вся ветка

Форум: "Основная";
Текущий архив: 2004.02.06;
Скачать: [xml.tar.bz2];

Наверх





Память: 0.44 MB
Время: 0.04 c
3-16096
HakoLamer
2004-01-10 22:27
2004.02.06
Query


14-16598
RealRascal
2003-12-21 10:05
2004.02.06
Аномальная перезагрузка


1-16490
andrew_p
2004-01-22 13:58
2004.02.06
Перевод MessageDLG


14-16588
Домарощинер
2004-01-15 18:58
2004.02.06
Глюки с сетевухой


6-16565
nester
2003-11-22 11:45
2004.02.06
Как распаковать PostData в TWebBrowser е





Afrikaans Albanian Arabic Armenian Azerbaijani Basque Belarusian Bulgarian Catalan Chinese (Simplified) Chinese (Traditional) Croatian Czech Danish Dutch English Estonian Filipino Finnish French
Galician Georgian German Greek Haitian Creole Hebrew Hindi Hungarian Icelandic Indonesian Irish Italian Japanese Korean Latvian Lithuanian Macedonian Malay Maltese Norwegian
Persian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swahili Swedish Thai Turkish Ukrainian Urdu Vietnamese Welsh Yiddish Bengali Bosnian
Cebuano Esperanto Gujarati Hausa Hmong Igbo Javanese Kannada Khmer Lao Latin Maori Marathi Mongolian Nepali Punjabi Somali Tamil Telugu Yoruba
Zulu
Английский Французский Немецкий Итальянский Португальский Русский Испанский