Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1.  
  2.         #region RelayCommand
  3.  
  4.         RelayCommand _relayCommandCommand;
  5.         public ICommand RelayCommandCommand
  6.         {
  7.             get
  8.             {
  9.                 if (_relayCommandCommand == null)
  10.                 {
  11.                     _relayCommandCommand = new RelayCommand(param => RelayCommandCommandExecute(param), param => RelayCommandCommandCanExecute(param));
  12.                 }
  13.                 return _relayCommandCommand;
  14.             }
  15.         }
  16.         void RelayCommandCommandExecute(object param)
  17.         {
  18.  
  19.         }
  20.         bool RelayCommandCommandCanExecute(object param)
  21.         {
  22.             return true;
  23.         }
  24.  
  25.         #endregion
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement