/// <summary>
        /// Hides an existing slideup popup
        /// </summary>
        /// <param name="popupContent">a child or root element of the popup content</param>
        /// <param name="Host_Id">Identifier of the host control</param>
        public static async Task HideSlideupPopupAsync(FrameworkElement popupContent, string Host_Id = null)
        {
            var id = SlideupPopup.GetIdentifier(popupContent);

            await HideSlideupPopupAsync(id, Host_Id);
        }
        /// <summary>
        /// Hides an existing slideup popup
        /// </summary>
        /// <param name="popupContent">a child or root element of the popup content</param>
        /// <param name="Host_Id">Identifier of the host control</param>
        public static void HideSlideupPopup(FrameworkElement popupContent, string Host_Id = null)
        {
            var id = SlideupPopup.GetIdentifier(popupContent);

            HideSlideupPopup(id, Host_Id);
        }