控件屏蔽Ctrl+C 复制
Posted 是蓝蓝的呀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控件屏蔽Ctrl+C 复制相关的知识,希望对你有一定的参考价值。
procedure ****.***KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin if ((Key = 67) or (Key = 99)) and (ssCtrl in Shift) then begin //Exit;解决不了问题 Abort;//可以 end; end;
以上是关于控件屏蔽Ctrl+C 复制的主要内容,如果未能解决你的问题,请参考以下文章