예제 #1
0
        private static ThemeData CreateDefaultThemeData(string themeName)
        {
            ThemeData themeData = new ThemeData
            {
                name = themeName,
                baseLibraryCssReferences = Array.Empty <string>()
            };

            return(themeData);
        }
예제 #2
0
        public static string[] GetThemeCssReferencedFiles(string themeName)
        {
            ThemeData themeData = GetThemeData(themeName);

            return(themeData.baseLibraryCssReferences);
        }