Example #1
0
 /// <summary>Initializes a new instance of the <see cref="Theme" /> class.</summary>
 public Theme()
 {
     _rawTheme     = string.Empty;
     _information  = new ThemeInformation();
     _colorPalette = new ColorPalette();
 }
Example #2
0
 /// <summary>Initializes a new instance of the <see cref="Theme" /> class.</summary>
 /// <param name="themeInformation">The theme information.</param>
 /// <param name="colorPalette">The color Palette.</param>
 public Theme(ThemeInformation themeInformation, ColorPalette colorPalette)
 {
     UpdateTheme(themeInformation, colorPalette);
 }