Esempio n. 1
0
 private void pbxClient_MouseDown(object sender, MouseEventArgs e)
 {
     leftMouse = true;
     foreach (Client c in main.clients)
     {
         Point p = RelativePosition(e.Location, c.clientProcess);
         Native.BackgroundMouseDown(c.clientProcess, p.X, p.Y);
     }
 }