B
BaKuBaKu
Unregistered / Unconfirmed
GUEST, unregistred user!
我想在控件中截获单独的 Ctrl 键响应一定的事件,比如:
OnKeyUp(...)
begin
case Key of
VK_CONTROL:begin ... end;
...
end;
end;
但是当按下 Ctrl+Space 打开/关闭输入法时该事件也能触发,
怎样截获单独的 Ctrl 键?
From: BaKuBaKu
(From: BaKuBaKu)
OnKeyUp(...)
begin
case Key of
VK_CONTROL:begin ... end;
...
end;
end;
但是当按下 Ctrl+Space 打开/关闭输入法时该事件也能触发,
怎样截获单独的 Ctrl 键?
From: BaKuBaKu
(From: BaKuBaKu)