protected override void DoEndSession()
 {
     _screenDragSession.End();
     _screenDragSession = null;
 }
 protected override bool DoBeginSession()
 {
     _screenDragSession = new InputDeviceScreenDragSession(RTInputDevice.Get.Device);
     return(_screenDragSession.Begin());
 }