private static string GetSkinImageUri(NodeCornerButtonType buttonType)
 {
     switch (buttonType)
     {
         case NodeCornerButtonType.Content:
             return App.Params.GlymaIconLibraryUrl + "/button-content-transparent.png";
         case NodeCornerButtonType.Play:
             return App.Params.GlymaIconLibraryUrl + "/button-play-transparent.png";
         case NodeCornerButtonType.Pause:
             return App.Params.GlymaIconLibraryUrl + "/button-pause-transparent.png";
         case NodeCornerButtonType.Map:
             return App.Params.GlymaIconLibraryUrl + "/button-map-transparent.png";
         case NodeCornerButtonType.Feed:
             return App.Params.GlymaIconLibraryUrl + "/button-feed-transparent.png";
     }
     return string.Empty;
 }
        private static string GetSkinImageUri(NodeCornerButtonType buttonType)
        {
            switch (buttonType)
            {
            case NodeCornerButtonType.Content:
                return(App.Params.GlymaIconLibraryUrl + "/button-content-transparent.png");

            case NodeCornerButtonType.Play:
                return(App.Params.GlymaIconLibraryUrl + "/button-play-transparent.png");

            case NodeCornerButtonType.Pause:
                return(App.Params.GlymaIconLibraryUrl + "/button-pause-transparent.png");

            case NodeCornerButtonType.Map:
                return(App.Params.GlymaIconLibraryUrl + "/button-map-transparent.png");

            case NodeCornerButtonType.Feed:
                return(App.Params.GlymaIconLibraryUrl + "/button-feed-transparent.png");
            }
            return(string.Empty);
        }