本文整理自网络,侵删。
uses Clipbrd, ...
//disable CTRL + V ("Paste") :: handles Edit1.OnKeyDown
procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState) ;
begin
if ((ssCtrl in Shift) AND (Key = ord('V'))) then
begin
if Clipboard.HasFormat(CF_TEXT) then ClipBoard.Clear;
Edit1.SelText := '"Paste" DISABLED!';
Key := 0;
end;
end; 相关阅读 >>
Delphi webservices 字节数组 base64编码
Delphi的tservice 服务路径获取 dll中获取文件路径
Delphi异常处理try except语句和try finally语句用法以及区别
更多相关阅读请进入《Delphi》频道 >>