File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 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
2222        public  event  PropertyChangedEventHandler  PropertyChanged ; 
2323
2424        /// <summary> 
25-         /// Raise  Property Changed Event 
25+         /// Trigger the  Property Changed Event 
2626        /// </summary> 
2727        /// <param name="propertyName">Name of Property that has Changed</param> 
2828        public  void  RaisePropertyChanged ( string  propertyName ) 
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public class ViewModelCommand : ICommand
3131        /// Initializes a new instance of the <see cref="ViewModelCommand"/> class.  
3232        /// </summary> 
3333        /// <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> 
3535        public  ViewModelCommand ( Action  execute )  
3636            :  this ( execute ,  null ) 
3737        { 
@@ -41,7 +41,7 @@ public ViewModelCommand(Action execute)
4141        /// <summary> 
4242        /// Initializes a new instance of the <see cref="ViewModelCommand"/> class. 
4343        /// </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> 
4545        /// <param name="canExecute">A function that determines whether the Command can be Executed</param> 
4646        public  ViewModelCommand ( Action  command ,  Func < bool >  canExecute ) 
4747        { 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments