Example #1
0
 /// <summary>
 /// Shows a preview of the tracks that will be scrobbled.
 /// </summary>
 public virtual void Preview()
 {
     _windowManager.ShowDialog(new ScrobblePreviewViewModel(CreateScrobbles()));
 }
Example #2
0
 /// <summary>
 /// Shows the general settings.
 /// </summary>
 public void ShowSettings()
 {
     _windowManager.ShowDialog(_generalSettingsVM);
 }
Example #3
0
 /// <summary>
 /// Shows the general settings.
 /// </summary>
 public void ShowSettings()
 {
     _windowManager.ShowDialog(new GeneralSettingsViewModel());
 }
Example #4
0
 /// <summary>
 /// Shows the <see cref="UserView"/>.
 /// </summary>
 public void HyperlinkClicked()
 {
     _windowManager.ShowDialog(UserViewModel);
     NotifyOfPropertyChange(() => StatusBarUsername);
 }