Last active
April 18, 2023 02:23
-
-
Save mariodivece/9907870 to your computer and use it in GitHub Desktop.
A simple ViewModelBase for WPF Apps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Unosquare.Wpf | |
{ | |
using System; | |
using System.ComponentModel; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.Serialization; | |
public abstract class ViewModelBase : INotifyPropertyChanged | |
{ | |
// uncomment the line below for Log4Net Logging | |
private static readonly log4net.ILog Log = Logging.For<ViewModelBase>(); | |
/// <summary> | |
/// Multicast event for property change notifications. | |
/// </summary> | |
public event PropertyChangedEventHandler PropertyChanged; | |
/// <summary> | |
/// Checks if a property already matches a desired value. Sets the property and | |
/// notifies listeners only when necessary. | |
/// </summary> | |
/// <typeparam name="T">Type of the property.</typeparam> | |
/// <param name="storage">Reference to a property with both getter and setter.</param> | |
/// <param name="value">Desired value for the property.</param> | |
/// <param name="propertyName">Name of the property used to notify listeners. This | |
/// value is optional and can be provided automatically when invoked from compilers that | |
/// support CallerMemberName.</param> | |
/// <returns>True if the value was changed, false if the existing value matched the | |
/// desired value.</returns> | |
protected virtual bool SetProperty<T>(ref T storage, T value, [CallerMemberName] string propertyName = null) | |
{ | |
if (object.Equals(storage, value)) return false; | |
storage = value; | |
// Log.DebugFormat("{0}.{1} = {2}", this.GetType().Name, propertyName, storage); | |
this.OnPropertyChanged(propertyName); | |
return true; | |
} | |
/// <summary> | |
/// Notifies listeners that a property value has changed. | |
/// </summary> | |
/// <param name="propertyName">Name of the property used to notify listeners. This | |
/// value is optional and can be provided automatically when invoked from compilers | |
/// that support <see cref="CallerMemberNameAttribute"/>.</param> | |
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null) | |
{ | |
var eventHandler = this.PropertyChanged; | |
if (eventHandler != null) | |
eventHandler(this, new PropertyChangedEventArgs(propertyName)); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment