Creating a Startwindow
This commit is contained in:
Natlinux81
2022-08-09 22:04:43 +02:00
parent 14d6e027f9
commit e9b04dbe89
12 changed files with 210 additions and 30 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.ViewModels
{
public class ViewModelBase : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPrpertyChanged(string properyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(properyName));
}
}
}