Hey Guys,
i wrote an Extension to classes, which implements INotifyPropertyChanged to inject the RaisePropertyChange method so i can use it like this:
this.RaisePropertyChanged(() => MyProperty);
without implementing the method in any base class. For my usage it was to slow, but maybe the Sourcecode can help someone.
So here it is:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq.Expressions;
using System.Reflection;
using System.Globalization;
namespace Infrastructure
{
///
/// Adds a RaisePropertyChanged method to objects implementing INotifyPropertyChanged.
///
public static class NotifyPropertyChangeExtension
{
#region private fields
private static readonly Dictionary eventArgCache = new Dictionary();
private static readonly object syncLock = new object();
#endregion
#region the Extension's
///
/// Verifies the name of the property for the specified instance.
///
/// The bindable object.
/// Name of the property.
[Conditional("DEBUG")]
public static void VerifyPropertyName(this INotifyPropertyChanged bindableObject, string propertyName)
{
bool propertyExists = TypeDescriptor.GetProperties(bindableObject).Find(propertyName, false) != null;
if (!propertyExists)
throw new InvalidOperationException(string.Format(CultureInfo.CurrentCulture,
"{0} is not a public property of {1}", propertyName, bindableObject.GetType().FullName));
}
///
/// Gets the property name from expression.
///
/// The notify object.
/// The property expression.
/// a string containing the name of the property.
public static string GetPropertyNameFromExpression(this INotifyPropertyChanged notifyObject, Expression> propertyExpression)
{
return GetPropertyNameFromExpression(propertyExpression);
}
///
/// Raises a property changed event.
///
///
/// The bindable object.
/// The property expression.
public static void RaisePropertyChanged(this INotifyPropertyChanged bindableObject, Expression> propertyExpression)
{
RaisePropertyChanged(bindableObject, GetPropertyNameFromExpression(propertyExpression));
}
#endregion
///
/// Raises the property changed on the specified bindable Object.
///
/// The bindable object.
/// Name of the property.
private static void RaisePropertyChanged(INotifyPropertyChanged bindableObject, string propertyName)
{
bindableObject.VerifyPropertyName(propertyName);
RaiseInternalPropertyChangedEvent(bindableObject, GetPropertyChangedEventArgs(propertyName));
}
///
/// Raises the internal property changed event.
///
/// The bindable object.
/// The instance containing the event data.
private static void RaiseInternalPropertyChangedEvent(INotifyPropertyChanged bindableObject, PropertyChangedEventArgs eventArgs)
{
// get the internal eventDelegate
var bindableObjectType = bindableObject.GetType();
// search the base type, which contains the PropertyChanged event field.
FieldInfo propChangedFieldInfo = null;
while (bindableObjectType != null)
{
propChangedFieldInfo = bindableObjectType.GetField("PropertyChanged", BindingFlags.Instance | BindingFlags.NonPublic);
if (propChangedFieldInfo != null)
break;
bindableObjectType = bindableObjectType.BaseType;
}
if (propChangedFieldInfo == null)
return;
// get prop changed event field value
var fieldValue = propChangedFieldInfo.GetValue(bindableObject);
if (fieldValue == null)
return;
MulticastDelegate eventDelegate = fieldValue as MulticastDelegate;
if (eventDelegate == null)
return;
// get invocation list
Delegate[] delegates = eventDelegate.GetInvocationList();
// invoke each delegate
foreach (Delegate propertyChangedDelegate in delegates)
propertyChangedDelegate.Method.Invoke(propertyChangedDelegate.Target, new object[] { bindableObject, eventArgs });
}
///
/// Gets the property name from an expression.
///
/// The property expression.
/// The property name as string.
private static string GetPropertyNameFromExpression(Expression> propertyExpression)
{
var lambda = (LambdaExpression)propertyExpression;
MemberExpression memberExpression;
if (lambda.Body is UnaryExpression)
{
var unaryExpression = (UnaryExpression)lambda.Body;
memberExpression = (MemberExpression)unaryExpression.Operand;
}
else memberExpression = (MemberExpression)lambda.Body;
return memberExpression.Member.Name;
}
///
/// Returns an instance of PropertyChangedEventArgs for the specified property name.
///
///
/// The name of the property to create event args for.
///
private static PropertyChangedEventArgs GetPropertyChangedEventArgs(string propertyName)
{
PropertyChangedEventArgs args;
lock (NotifyPropertyChangeExtension.syncLock)
{
if (!eventArgCache.TryGetValue(propertyName, out args))
eventArgCache.Add(propertyName, args = new PropertyChangedEventArgs(propertyName));
}
return args;
}
}
}
I removed some parts of the original code, so the extension should work as is, without references to other parts of my library. But it's not really tested.
cheers,
Chris
P.S. Some parts of the code was borrowed from someone else. Shame on me, that i forgot from where i got it. :(