如何在C#中阻止键盘和鼠标输入?

时间:2009-02-25 15:45:15

标签: c# windows keyboard mouse

我正在寻找一些防止键盘和鼠标输入的代码(最好是C#)。

4 个答案:

答案 0 :(得分:21)

扩展Josh的(正确的)答案。这是该方法的PInvoke签名。

public partial class NativeMethods {

    /// Return Type: BOOL->int
    ///fBlockIt: BOOL->int
    [System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint="BlockInput")]
    [return: System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)]
public static extern  bool BlockInput([System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)] bool fBlockIt) ;

}

public static void BlockInput(TimeSpan span) {
  try { 
    NativeMethods.BlockInput(true);
    Thread.Sleep(span);
  } finally {
    NativeMethods.BlockInput(false);
  }
}

修改

添加了一些代码来演示如何阻止间隔

答案 1 :(得分:7)

查看BlockInput Win32函数

听起来像一些有趣的测试:)

答案 2 :(得分:1)

查看这篇文章Processing Global Mouse and Keyboard Hooks in C#。写这篇文章的人已经围绕这个问题做了很多研究。

也许你可以使用它。

答案 3 :(得分:0)

using System.Runtime.InteropServices;
public partial class NativeMethods
{        
    [DllImport("user32.dll", EntryPoint = "BlockInput")]
    [return: MarshalAs(UnmanagedType.Bool)]
    internal static extern bool BlockInput([MarshalAs(UnmanagedType.Bool)] bool fBlockIt);
}

internal 不是 public。所以不属于CA1401

公共类型中的公共或受保护方法具有 System.Runtime.InteropServices.DllImportAttribute 属性