You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Observes a property that implements INotifyPropertyChanged, and automatically calls DelegateCommandBase.RaiseCanExecuteChanged on property changed notifications.
159
171
/// </summary>
160
172
/// <typeparam name="T">The object type containing the property specified in the expression.</typeparam>
@@ -170,7 +182,7 @@ public AsyncDelegateCommand ObservesProperty<T>(Expression<Func<T>> propertyExpr
170
182
/// Observes a property that is used to determine if this command can execute, and if it implements INotifyPropertyChanged it will automatically call DelegateCommandBase.RaiseCanExecuteChanged on property changed notifications.
/// Observes a property that implements INotifyPropertyChanged, and automatically calls DelegateCommandBase.RaiseCanExecuteChanged on property changed notifications.
183
195
/// </summary>
184
196
/// <typeparam name="TType">The type of the return value of the method that this delegate encapsulates</typeparam>
@@ -194,7 +206,7 @@ public AsyncDelegateCommand<T> ObservesProperty<TType>(Expression<Func<TType>> p
194
206
/// Observes a property that is used to determine if this command can execute, and if it implements INotifyPropertyChanged it will automatically call DelegateCommandBase.RaiseCanExecuteChanged on property changed notifications.
0 commit comments