0


我正在开发一个基于 Windows 的应用程序,我希望每当我的应用程序启动时,它都应该在我的应用程序窗口表单之外禁用鼠标单击事件。

谁能告诉我,我怎样才能做到这一点?

提前致谢。

编辑:
在表单中捕捉鼠标点击事件并抑制点击动作很容易,因为我们只使用这个:

    protected override void WndProc(ref Message m)
    {
        if (m.Msg == (int)MouseMessages.WM_LBUTTONDOWN || m.Msg == (int)MouseMessages.WM_LBUTTONUP)
            MessageBox.Show("Click event caught!");  //return; --for suppress the click event action.
        else
            base.WndProc(ref m);
    }

但是如何在我的应用程序表单之外捕获鼠标单击事件?

4

1 回答 1

3

这样就可以做到了。它使用 win API 函数BlockInput

注意:CTRL + ALT + DELETE 再次启用输入。但其他鼠标和键盘输入被阻止。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {

[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
public static extern void BlockInput([In, MarshalAs(UnmanagedType.Bool)]bool fBlockIt);

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.Show();
            //Blocks the input
            BlockInput(true);
            System.Threading.Thread.Sleep(5000);
            //Unblocks the input
            BlockInput(false); 
        }
    }
}
于 2013-10-10T09:04:54.667 回答