, View, . , - :
public interface IAudioPlayer
{
void Play(string fileName);
}
public class AudioPlayer : IAudioPlayer
{
private readonly SoundPlayer player = new SoundPlayer();
public void Play(string fileName)
{
player.Stream = File.OpenRead(fileName);
player.Play();
}
}
Injection Dependency, ViewModel:
public class TheViewModel
{
public TheViewModel(IAudioPlayer audioPlayer)
{
}
}
, , , ViewModel ... , EventAggregator.
, . XAML. - , ViewModel, View .
, , ViewModel, - , .
, , MVVM/MVP, ViewModel IView , ExecuteDeletionAnimation. ViewModel , .
, ?