События мыши не запущены - PullRequest
4 голосов
/ 11 февраля 2012

Я делаю приложение C # WinForms. События MouseMove и MouseClick формы по какой-то причине не запускаются. (Я, вероятно, почувствую себя идиотом, когда узнаю почему.) Это прозрачная форма (для TransparencyKey задан цвет фона) с полупрозрачным анимированным GIF в Picture Box. Я делаю заставку. Есть предложения?

EDIT: MainScreensaver.cs

    Random randGen = new Random();
    public MainScreensaver(Rectangle bounds)
    {
        InitializeComponent();
        this.Bounds = Bounds;
    }

    private void timer1_Tick(object sender, EventArgs e)
    {
        Rectangle screen = Screen.PrimaryScreen.Bounds;
        Point position = new Point(randGen.Next(0,screen.Width-this.Width)+screen.Left,randGen.Next(0,screen.Height-this.Height)+screen.Top);
        this.Location = position;
    }

    private void MainScreensaver_Load(object sender, EventArgs e)
    {
        Cursor.Hide();
        TopMost = true;
    }
    private Point mouseLocation;

    private void MainScreensaver_MouseMove(object sender, MouseEventArgs e)
    {
        if (!mouseLocation.IsEmpty)
        {
            // Terminate if mouse is moved a significant distance
            if (Math.Abs(mouseLocation.X - e.X) > 5 ||
                Math.Abs(mouseLocation.Y - e.Y) > 5)
                Application.Exit();
        }

        // Update current mouse location
        mouseLocation = e.Location;
    }

    private void MainScreensaver_KeyPress(object sender, KeyPressEventArgs e)
    {
        Application.Exit();
    }

    private void MainScreensaver_Deactive(object sender, EventArgs e)
    {
        Application.Exit();
    }

    private void MainScreensaver_MouseClick(object sender, MouseEventArgs e)
    {
        Application.Exit();
    }

Выдержка из MainScreensaver.Designer.cs InitialiseComponent ()

    this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainScreensaver_MouseClick);
    this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MainScreensaver_MouseMove);

1 Ответ

1 голос
/ 11 февраля 2012

Вы уверены, что ваша форма имеет фокус? Если ваша форма не имеет фокуса, события мыши не будут запущены.

...