Example #1
0
 public void PTZLeftButtonCommandExecuted(object obj)
 {
     //MessageBox.Show("PTZLeftButtonCommandExecuted Button executed!");
     _UI_PTZ.Direction = PTZDirection.Left;
     _UI_PTZ.Zoom      = PTZoom.None;
     Data_CRUD.UpdateChannelDisplay(_UI_PTZ);
 }
Example #2
0
        public void IsRecordingRightExecuted(object obj)
        {
            //MessageBox.Show(obj.ToString());

            bool _IsRecording = (bool)obj;

            Channel2.IsRecording = _IsRecording;
            Data_CRUD.UpdateChannelDisplay(Channel2);
        }