/// <summary>
 /// Sets the resolution of the actual images.
 /// </summary>
 /// <param name="resolution">The resolution.</param>
 protected override void SetResolution(Size resolution)
 {
     _photoCamera.Resolution = new System.Windows.Size(resolution.Width, resolution.Height);
 }
 /// <summary>
 /// Sets the resolution of the actual images.
 /// </summary>
 /// <param name="resolution">The resolution.</param>
 /// <exception cref="MustBeImplementedException"></exception>
 protected override void SetResolution(Size resolution)
 {
     throw new MustBeImplementedException();
 }
Esempio n. 3
0
 /// <summary>
 /// Sets the resolution of the actual images.
 /// </summary>
 /// <param name="resolution">The resolution.</param>
 protected abstract void SetResolution(Size resolution);