如何在Windows Forms C#中伪造鼠标光标位置?

时间:2010-08-14 19:31:47

标签: c# winforms mouse cursor position

我有一个带有简单气球工具提示的Windows窗体应用程序。根据应用程序在桌面上的窗口位置和鼠标光标位置,气球“tip”(或气球指向箭头)可能指向或不指向我想要的位置。

例如,我的应用程序捕捉到桌面两侧,当它被捕捉到右侧时,如果鼠标光标低于右侧100px,则气球“提示”将指向错误的位置。但是如果鼠标光标在其他任何地方,它将指向正确的位置。

在这种情况下,我想将鼠标光标位置(实际上没有改变鼠标光标位置)伪装到其他地方,这样就不会出现问题。

这可能吗?我怎样才能做到这一点?

private void noteTitleInput_KeyPress(object sender, KeyPressEventArgs e) {
    if(e.KeyChar == Convert.ToChar(Keys.Return, CultureInfo.InvariantCulture) && noteTitleInput.Text.Length > 0) {
        e.Handled = true;

        noteInputButton_Click(null, null);
    } else if(!Char.IsControl(e.KeyChar)) {
        if(Array.IndexOf(Path.GetInvalidFileNameChars(), e.KeyChar) > -1) {
            e.Handled = true;

            System.Media.SystemSounds.Beep.Play();

            noteTitleToolTip.Show("The following characters are not valid:\n\\ / : * ? < > |",
                groupNoteInput, 25, -75, 2500);

            return;
        }
    }

    noteTitleToolTip.Hide(groupNoteInput);
}

4 个答案:

答案 0 :(得分:4)

我不太确定你为什么需要设置光标位置,因为你可以设置工具提示出现在你告诉它的地方,而不一定是鼠标所在的位置。

例如:

tooltip1.Show("My tip", controlOnWhichToShow, 15, 15);

会在controlOnWhichToShow的左上角显示提示,距离边缘15个点。

如果我误解了你,请指明在哪个时间点使用鼠标位置。

答案 1 :(得分:3)

如果您同步MouseHover事件,则可以像veljkoz描述的那样创建工具提示。通过这种方式,您可以根据需要放置工具提示。代码看起来像这样:

protected override void OnMouseHover(EventArgs e)
{
  ToolTip myToolTip = new ToolTip();
  myToolTip.IsBalloon = true;
  // TODO The x and y coordinates should be what ever you wish.
  myToolTip.Show("Helpful Text Also", this, 50, 50);
  base.OnMouseHover(e);
}

希望有所帮助。

答案 2 :(得分:0)

在Windows窗体中,当用户在控件上按下鼠标按钮时,控件将捕获鼠标,当用户释放鼠标按钮时,控件将释放鼠标。

Control类的Capture属性指定控件是否捕获了鼠标。要确定控件何时失去鼠标捕获,请处理MouseCaptureChanged事件。

只有前景窗口才能捕获鼠标。当后台窗口尝试捕获鼠标时,窗口仅接收鼠标指针位于窗口可见部分内时发生的鼠标事件的消息。此外,即使前景窗口捕获了鼠标,用户仍然可以单击另一个窗口,将其带到前台。捕获鼠标时,快捷键不起作用。

更多信息。 Mouse Capture in Windows Forms

答案 3 :(得分:0)

您可以按照班级的要求去做。您可以通过一种非常简单的方式来做到这一点。

一个create class和

namespace MousLokasyonbulma

{     benimtooltip类:ToolTip     {         [System.Runtime.InteropServices.DllImport(“ User32.dll”)]         静态外部布尔MoveWindow(IntPtr h,int x,int y,int width,int height,bool重绘);         公共benimtooltip()         {             this.OwnerDraw = true;             this.Draw + = Benimtooltip_Draw;         }

    private void Benimtooltip_Draw(object sender, DrawToolTipEventArgs e)
    {
        e.DrawBackground();
        e.DrawBorder();
        e.DrawText();
        var t = (ToolTip)sender;
        var h = t.GetType().GetProperty("Handle",
          System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
        var handle = (IntPtr)h.GetValue(t);
        var location = new Point(650, 650);
        var ss= MoveWindow(handle, location.X, location.Y, e.Bounds.Width, e.Bounds.Height, false);
    }
}

}

完整代码MyGithup

示例项目图像 https://i.hizliresim.com/1pndZG.png https://i.hizliresim.com/Lvo3Rb.png