private void MouseUpdate(byte btn, int x, int y)
 {
     if (rfb != null)
     {
         rfb.WritePointerEvent(btn, new System.Drawing.Point(x, y));
     }
 }
 public void WritePointerEvent(byte buttonMask, Point point)
 {
     rfb.WritePointerEvent(buttonMask, point);
 }