Пример #1
0
        private void InitializeContent(Camera camera)
        {
            camera.setMode(DefaultWidth, DefaultHeight, 1000 / 24);

            video.attachCamera(camera);
            video.AttachTo(this);
        }
Пример #2
0
 public static void remove_status(Camera that, Action<StatusEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, StatusEvent.STATUS);
 }
Пример #3
0
 public static void add_status(Camera that, Action<StatusEvent> value)
 {
     CommonExtensions.CombineDelegate(that, value, StatusEvent.STATUS);
 }
Пример #4
0
 public static void remove_activity(Camera that, Action<ActivityEvent> value)
 {
     CommonExtensions.RemoveDelegate(that, value, ActivityEvent.ACTIVITY);
 }
Пример #5
0
 /// <summary>
 /// Specifies a video stream from a camera to be displayed within the boundaries of the Video object in the application.
 /// </summary>
 public void attachCamera(Camera camera)
 {
 }
Пример #6
0
		/// <summary>
		/// Starts capturing video from a camera, or stops capturing if theCamera is set to null.
		/// </summary>
		public void attachCamera(Camera theCamera)
		{
		}
Пример #7
0
		/// <summary>
		/// Starts capturing video from a camera, or stops capturing if theCamera is set to null.
		/// </summary>
		public void attachCamera(Camera theCamera, int snapshotMilliseconds)
		{
		}