zoukankan      html  css  js  c++  java
  • 禁止TEdit或TMemo的“Ctrl+V”粘贴

    今天去About.com逛了逛,学到一点东西,记下来

    No "Paste" for you!
    To intercept any key combination for a TEdit (or TMemo or more generally TCustomEdit) you need to handle the OnKeyDown event.
    Put a TEdit named "Edit1" on a form (named "Form1"). Handle Edit1's OnKeyDown event as:

    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;
    When the user presses the CTRL+V key combination while Edit1 has the input focus ... the code above will clear the clipboard and "paste" the '"Paste" DISABLED!' text into the edit control.
  • 相关阅读:
    定时执行
    history 命令历史
    last
    文件解压缩 tar zip
    硬件信息 dmidecode dmesg lsdev lshw haparm lsusb
    文件加密 解密 pdftk openssl gpg vim
    vim 脚本——插件
    irc
    telnet
    go 垃圾回收机制
  • 原文地址:https://www.cnblogs.com/leonkin/p/2365983.html
Copyright © 2011-2022 走看看