wpf_player.AudioPlayerModel.NotifyPropertyChanged C# (CSharp) Méthode

NotifyPropertyChanged() private méthode

Method called when a property has been changed. This method rises the event PropertyChange.
private NotifyPropertyChanged ( String info ) : void
info String Name of the property that has been changed
Résultat void
        private void NotifyPropertyChanged(String info)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(info));
            }
        }