English 中文(简体)
• 森林伙伴关系中的固定位置?
原标题:Set mouse position in WPF?
  • 时间:2011-11-18 16:51:34
  •  标签:
  • c#
  • wpf

我有两阵列,有坐标,一意是,按照在《世界森林论坛》申请中建立的具体模式进行改观。 你们能否帮助我? 我对库尔斯阶级进行了审判,但不会奏效。 显然,我做了一些错误的事情。

private void SetPosition( int a, int b)
{
    this.Cursor = new Cursor(Cursor.Current.Handle);
    Cursor.Position = new Point(a, b);
}

这种方法是指从阵列中使用a和b。 页: 1

这种方法是在20次火灾的情况下使用的。

最佳回答

如果没有更好的办法,我们就不能完全相信 (看来你使用的守则是针对WinForms的,但使用<代码>的平台Invoke。) SetCursorPos 似乎有trick:

private void SetPosition(int a, int b)
{
    SetCursorPos(a, b);
}

[DllImport("User32.dll")]
private static extern bool SetCursorPos(int X, int Y);
问题回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签