Example #1
0
        public void OnProcessSuccessfully(Reply sender)
        {
            SuccessfullyEventHandler handler = ProcessSuccessfully;

            if (handler != null)
            {
                handler(sender);
            }
        }
Example #2
0
        private void OnProcessSuccessfully(RobotReplyData robotReplyData)
        {
            SuccessfullyEventHandler handler = ProcessSuccessfully;

            if (handler != null)
            {
                handler(robotReplyData);
            }
        }
        private void OnProcessSuccessfully(object sender)
        {
            SuccessfullyEventHandler handler = ProcessSuccessfully;

            if (handler != null)
            {
                handler(sender);
            }
        }
Example #4
0
        public void OnDownloadCompleted(BitmapImage sender)
        {
            SuccessfullyEventHandler handler = DownloadCompleted;

            if (handler != null)
            {
                handler(sender);
            }
        }
Example #5
0
        private void OnProcessSuccessfully(List <MotionInfo> listMotionInfo)
        {
            SuccessfullyEventHandler handler = ProcessSuccessfully;

            if (handler != null)
            {
                handler(listMotionInfo);
            }
        }