File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public abstract class ObservableObjectBase : INotifyPropertyChanged
22
22
public event PropertyChangedEventHandler PropertyChanged ;
23
23
24
24
/// <summary>
25
- /// Raise Property Changed Event
25
+ /// Trigger the Property Changed Event
26
26
/// </summary>
27
27
/// <param name="propertyName">Name of Property that has Changed</param>
28
28
public void RaisePropertyChanged ( string propertyName )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public class ViewModelCommand : ICommand
31
31
/// Initializes a new instance of the <see cref="ViewModelCommand"/> class.
32
32
/// </summary>
33
33
/// <remarks>The command can always be executed</remarks>
34
- /// <param name="execute">The action for the Command to Execute</param>
34
+ /// <param name="execute">The Action for the Command to Execute</param>
35
35
public ViewModelCommand ( Action execute )
36
36
: this ( execute , null )
37
37
{
@@ -41,7 +41,7 @@ public ViewModelCommand(Action execute)
41
41
/// <summary>
42
42
/// Initializes a new instance of the <see cref="ViewModelCommand"/> class.
43
43
/// </summary>
44
- /// <param name="command">The action for the Command to Execute</param>
44
+ /// <param name="command">The Action for the Command to Execute</param>
45
45
/// <param name="canExecute">A function that determines whether the Command can be Executed</param>
46
46
public ViewModelCommand ( Action command , Func < bool > canExecute )
47
47
{
You can’t perform that action at this time.
0 commit comments