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