예제 #1
0
 public ThemeForm(string themeFile)
 {
     InitializeComponent();
     ActiveFile = new ThemeFile(themeFile);
     this.Text  = themeFile;
 }
예제 #2
0
 public ThemeTransition(ThemeFile FromTheme, ThemeFile ToTheme)
 {
     this.FromTheme = FromTheme;
     this.ToTheme   = ToTheme;
     timer.Elapsed += Tick;
 }
예제 #3
0
 public ThemeForm()
 {
     InitializeComponent();
     ActiveFile = new ThemeFile();
 }