private static string GetControlTemplate(GuiControlStyle style)
        {
            object template;

            if (style.TryGetValue(_styleProperty, out template))
            {
                return(template as string);
            }

            return(null);
        }