Skip to content

An Framework for easy implementation of the Mvvm pattern.

Notifications You must be signed in to change notification settings

Klaus-fischer/Mvvm

Repository files navigation

SIM MVVM

Standart Bibliothek für alle Model-View-ViewModel implementationen.

namespace SIM.Mvvm

SIM.Mvvm.ViewModel : IViewModel

  • Basisklasse für die MVVM funktionalität.
Aufruf für PropertyChanged:
OnPropertyChanged(string? propertyName);
Eigenschaften implementieren:
private int _property;
public int Property
{
    get => this._property;
    set => this.SetPropertyValue(ref _property, value);
}

Vordefinierte Commands:

About

An Framework for easy implementation of the Mvvm pattern.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages