TRX/tools/config/TRX_ConfigToolLib/Utils/BaseNotifyPropertyChanged.cs
lahm86 de1a63fc74 tools: clean-up config tool build messages
This fixes VS messages regarding namespaces, removes some redundant
usings and SDK parameters, and adds XAML design data contexts.
2025-04-03 17:09:56 +01:00

14 lines
423 B
C#

using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace TRX_ConfigToolLib.Utils;
public abstract class BaseNotifyPropertyChanged : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}