Files
bluflame/hgplus/bliss/Tweaky/ViewModelBase.cs
2026-04-18 22:31:51 +02:00

25 lines
563 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tweaky
{
public class ViewModelBase : INotifyPropertyChanged
{
public ViewModelBase()
{
}
public void RaisePropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
public event PropertyChangedEventHandler PropertyChanged;
}
}