示例#1
0
 public ThemeStyler(IFontProvider fontProvider, IThemeCollection themes)
 {
     state = new StyleConfiguratorState(themes)
     {
         Fonts = fontProvider
     };
 }
示例#2
0
 public ThemeStyler(IThemeCollection themes)
 {
     this.themes = themes;
 }
示例#3
0
 public StyleConfiguratorState(IThemeCollection themes)
 {
     this.themes = themes;
 }