/// <summary>
 /// Creates a <see cref="Projection"/> from <see cref="windows.UI.Xaml.Media.Projection"/>.
 /// </summary>
 /// <param name="args">The <see cref="windows.UI.Xaml.Media.Projection"/> instance containing the event data.</param>
 /// <returns><see cref="Projection"/></returns>
 public static Projection FromProjection(windows.UI.Xaml.Media.Projection args)
 {
     return(new Projection(args));
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Projection"/> class, a
 /// Wpf-enabled wrapper for <see cref="windows.UI.Xaml.Media.Projection"/>
 /// </summary>
 public Projection(windows.UI.Xaml.Media.Projection instance)
 {
     this.UwpInstance = instance;
 }