HamBook – Rev
?pathlinks?
using Configuration.Annotations;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace Configuration
{
public class Visualisations : INotifyPropertyChanged
{
private Spectrogram _spectrogram = new Spectrogram();
public Spectrogram Spectrogram
{
get => _spectrogram;
set
{
if (value == _spectrogram)
{
return;
}
_spectrogram = value;
OnPropertyChanged();
}
}
public Visualisations()
{
}
public event PropertyChangedEventHandler PropertyChanged;
[NotifyPropertyChangedInvocator]
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}