/// <summary>
 /// Raises the property changed on the specified bindable Object.
 /// </summary>
 /// <param name="bindableObject">The bindable object.</param>
 /// <param name="propertyName">Name of the property.</param>
 private static void RaisePropertyChanged(INotifyPropertyChanged bindableObject, string propertyName)
 {
     bindableObject.VerifyPropertyName(propertyName);
     RaiseInternalPropertyChangedEvent(bindableObject, GetPropertyChangedEventArgs(propertyName));
 }