コード例 #1
0
ファイル: ThemeHelper.cs プロジェクト: jechague/DotNetClasses
        private static ThemeData CreateDefaultThemeData(string themeName)
        {
            ThemeData themeData = new ThemeData
            {
                name = themeName,
                baseLibraryCssReferences = Array.Empty <string>()
            };

            return(themeData);
        }
コード例 #2
0
ファイル: ThemeHelper.cs プロジェクト: jechague/DotNetClasses
        public static string[] GetThemeCssReferencedFiles(string themeName)
        {
            ThemeData themeData = GetThemeData(themeName);

            return(themeData.baseLibraryCssReferences);
        }