解决锁定键盘鼠标的方法

2019-07-24 17:07:26 浏览数 (1)

// Import BlockInput function form user32.dll: // BlockInput Funktion von user32.dll importieren: function BlockInput(fBlockInput: Boolean): DWORD; stdcall; external 'user32.DLL'; {block input/ blockieren} procedure TForm1.Button1Click(Sender: TObject); begin BlockInput(True); end; {Unblock input / Blockierung aufheben} procedure TForm1.Button2Click(Sender: TObject); begin BlockInput(False); end;

0 人点赞