public MainViewModel()
        {
            ScreenSettings = new ScreenSettings();

            this.MouseEnterCommand = new DelegateCommand(this.MouseEnter);
            this.MouseLeaveCommand = new DelegateCommand(this.MouseLeave);

            CurrentSong = new Song("Romans 15:7" + Environment.NewLine + "=" + Environment.NewLine + "Therefore welcome one another" + Environment.NewLine + "as Christ has welcomed you," + Environment.NewLine + "for the glory of God.", "");
        }
Example #2
0
 public MainViewModel()
 {
     ScreenSettings = new ScreenSettings();
 }