public ThemeForm(string themeFile) { InitializeComponent(); ActiveFile = new ThemeFile(themeFile); this.Text = themeFile; }
public ThemeTransition(ThemeFile FromTheme, ThemeFile ToTheme) { this.FromTheme = FromTheme; this.ToTheme = ToTheme; timer.Elapsed += Tick; }
public ThemeForm() { InitializeComponent(); ActiveFile = new ThemeFile(); }