using System; using System.ComponentModel; using System.Runtime.CompilerServices; using System.Windows.Controls; using static QuikDawEditor.EDITING.MiscMethods; namespace QuikDawEditor { public partial class AudioRecordingClipControl : UserControl, INotifyPropertyChanged { public string RelRes() { ReleaseResources(); return "Resources released"; } public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] String propertyName = "") { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } public AudioRecordingClipControl() { InitializeComponent(); } } }