Ejemplo n.º 1
0
        Theme CreateBlueTheme()
        {
            IColorTheme  colorTheme = BlueColorTheme.Instance;
            IFontTheme   fontTheme  = BlueFontTheme.Instance;
            IImagesTheme imgTheme   = BlueImagesTheme.Instance;

            return(new Theme(colorTheme, fontTheme, imgTheme));
        }
Ejemplo n.º 2
0
        Theme CreatePinkTheme()
        {
            IColorTheme  colorTheme = PinkColorTheme.Instance;
            IFontTheme   fontTheme  = PinkFontTheme.Instance;
            IImagesTheme imgTheme   = PinkImagesTheme.Instance;

            return(new Theme(colorTheme, fontTheme, imgTheme));
        }
Ejemplo n.º 3
0
        public Theme(IColorTheme colorTheme, IFontTheme fontTheme, IImagesTheme imgTheme)
        {
            this.colorTheme = colorTheme;
            this.fontTheme  = fontTheme;
            this.imgTheme   = imgTheme;

            ResetToDefaults();
        }
Ejemplo n.º 4
0
        Theme CreateRedTheme()
        {
            IColorTheme  colorTheme = RedColorTheme.Instance;
            IFontTheme   fontTheme  = RedFontTheme.Instance;
            IImagesTheme imgTheme   = RedImagesTheme.Instance;

            return(new Theme(colorTheme, fontTheme, imgTheme));
        }
Ejemplo n.º 5
0
		public Theme(IColorTheme colorTheme, IFontTheme fontTheme, IImagesTheme imgTheme)
		{
			this.colorTheme = colorTheme;
			this.fontTheme = fontTheme;
			this.imgTheme = imgTheme;

			ResetToDefaults ();
		}