void MausBewegung(object sender, EventArgs e)
{
Cursor.Position = new Point(Cursor.Position.X + 10, Cursor.Position.Y + 10);
}
void MausBewegungZurück(object sender, EventArgs e)
{
Cursor.Position = new Point(Cursor.Position.X - 10, Cursor.Position.Y - 10);
}
因此我在鼠标移动的任何地方使用它,但在游戏中它什么都不做。已经尝试以管理员身份运行,但仍然没有帮助。
private void button3_Click(object sender, EventArgs e)
{
InitializeComponent();
System.Windows.Forms.Timer ShakerZwei = new System.Windows.Forms.Timer();
System.Windows.Forms.Timer SechsSekunden = new System.Windows.Forms.Timer();
ShakerZwei.Interval = 6800;
SechsSekunden.Interval = 6000;
SechsSekunden.Tick += new EventHandler(MausBewegung);
ShakerZwei.Tick += new EventHandler(MausBewegungZurück);
SechsSekunden.Start();
ShakerZwei.Start();
}
void MausBewegung(object sender, EventArgs e)
{
Cursor.Position = new Point(Cursor.Position.X + 10, Cursor.Position.Y + 10);
}
void MausBewegungZurück(object sender, EventArgs e)
{
Cursor.Position = new Point(Cursor.Position.X - 10, Cursor.Position.Y - 10);
}