5 changed files with 382 additions and 215 deletions
@ -0,0 +1,158 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: Peter Forstmeier |
||||||
|
* Date: 16.10.2011 |
||||||
|
* Time: 19:40 |
||||||
|
* |
||||||
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||||
|
*/ |
||||||
|
using System; |
||||||
|
using System.Diagnostics; |
||||||
|
using System.Windows.Input; |
||||||
|
|
||||||
|
namespace ICSharpCode.SharpDevelop.Widgets |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Description of RelayCommand.
|
||||||
|
/// </summary>
|
||||||
|
public class RelayCommand<T> : System.Windows.Input.ICommand |
||||||
|
{ |
||||||
|
|
||||||
|
#region Declarations
|
||||||
|
|
||||||
|
readonly Predicate<T> _canExecute; |
||||||
|
readonly Action<T> _execute; |
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="RelayCommand<T>"/> class and the command can always be executed.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="execute">The execution logic.</param>
|
||||||
|
public RelayCommand(Action<T> execute) |
||||||
|
: this(execute, null) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="RelayCommand<T>"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="execute">The execution logic.</param>
|
||||||
|
/// <param name="canExecute">The execution status logic.</param>
|
||||||
|
public RelayCommand(Action<T> execute, Predicate<T> canExecute) |
||||||
|
{ |
||||||
|
|
||||||
|
if (execute == null) |
||||||
|
throw new ArgumentNullException("execute"); |
||||||
|
_execute = execute; |
||||||
|
_canExecute = canExecute; |
||||||
|
} |
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region ICommand Members
|
||||||
|
|
||||||
|
public event EventHandler CanExecuteChanged |
||||||
|
{ |
||||||
|
add |
||||||
|
{ |
||||||
|
|
||||||
|
if (_canExecute != null) |
||||||
|
CommandManager.RequerySuggested += value; |
||||||
|
} |
||||||
|
remove |
||||||
|
{ |
||||||
|
|
||||||
|
if (_canExecute != null) |
||||||
|
CommandManager.RequerySuggested -= value; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
[DebuggerStepThrough] |
||||||
|
public Boolean CanExecute(Object parameter) |
||||||
|
{ |
||||||
|
return _canExecute == null ? true : _canExecute((T)parameter); |
||||||
|
} |
||||||
|
|
||||||
|
public void Execute(Object parameter) |
||||||
|
{ |
||||||
|
_execute((T)parameter); |
||||||
|
} |
||||||
|
|
||||||
|
#endregion
|
||||||
|
} |
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A command whose sole purpose is to relay its functionality to other objects by invoking delegates. The default return value for the CanExecute method is 'true'.
|
||||||
|
/// </summary>
|
||||||
|
public class RelayCommand : System.Windows.Input.ICommand |
||||||
|
{ |
||||||
|
|
||||||
|
#region Declarations
|
||||||
|
|
||||||
|
readonly Func<Boolean> _canExecute; |
||||||
|
readonly Action _execute; |
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructors
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="RelayCommand<T>"/> class and the command can always be executed.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="execute">The execution logic.</param>
|
||||||
|
public RelayCommand(Action execute) |
||||||
|
: this(execute, null) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new instance of the <see cref="RelayCommand<T>"/> class.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="execute">The execution logic.</param>
|
||||||
|
/// <param name="canExecute">The execution status logic.</param>
|
||||||
|
public RelayCommand(Action execute, Func<Boolean> canExecute) |
||||||
|
{ |
||||||
|
|
||||||
|
if (execute == null) |
||||||
|
throw new ArgumentNullException("execute"); |
||||||
|
_execute = execute; |
||||||
|
_canExecute = canExecute; |
||||||
|
} |
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region ICommand Members
|
||||||
|
|
||||||
|
public event EventHandler CanExecuteChanged |
||||||
|
{ |
||||||
|
add |
||||||
|
{ |
||||||
|
|
||||||
|
if (_canExecute != null) |
||||||
|
CommandManager.RequerySuggested += value; |
||||||
|
} |
||||||
|
remove |
||||||
|
{ |
||||||
|
|
||||||
|
if (_canExecute != null) |
||||||
|
CommandManager.RequerySuggested -= value; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
[DebuggerStepThrough] |
||||||
|
public Boolean CanExecute(Object parameter) |
||||||
|
{ |
||||||
|
return _canExecute == null ? true : _canExecute(); |
||||||
|
} |
||||||
|
|
||||||
|
public void Execute(Object parameter) |
||||||
|
{ |
||||||
|
_execute(); |
||||||
|
} |
||||||
|
|
||||||
|
#endregion
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,79 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: Peter Forstmeier |
||||||
|
* Date: 16.10.2011 |
||||||
|
* Time: 19:35 |
||||||
|
* |
||||||
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||||
|
*/ |
||||||
|
using System; |
||||||
|
using System.ComponentModel; |
||||||
|
using System.Linq.Expressions; |
||||||
|
using System.Reflection; |
||||||
|
|
||||||
|
namespace ICSharpCode.SharpDevelop.Widgets |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Description of ViewModelBase.
|
||||||
|
/// </summary>
|
||||||
|
public class ViewModelBase:INotifyPropertyChanged |
||||||
|
{ |
||||||
|
public ViewModelBase() |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||||||
|
|
||||||
|
protected virtual void OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs e) |
||||||
|
{ |
||||||
|
var handler = this.PropertyChanged; |
||||||
|
if (handler != null) |
||||||
|
{ |
||||||
|
handler(this, e); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
protected void RaisePropertyChanged<T>(Expression<Func<T>> propertyExpresssion) |
||||||
|
{ |
||||||
|
var propertyName = ExtractPropertyName(propertyExpresssion); |
||||||
|
this.RaisePropertyChanged(propertyName); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
protected void RaisePropertyChanged(String propertyName) |
||||||
|
{ |
||||||
|
OnPropertyChanged(new PropertyChangedEventArgs(propertyName)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private static String ExtractPropertyName<T>(Expression<Func<T>> propertyExpresssion) |
||||||
|
{ |
||||||
|
if (propertyExpresssion == null) |
||||||
|
{ |
||||||
|
throw new ArgumentNullException("propertyExpresssion"); |
||||||
|
} |
||||||
|
|
||||||
|
var memberExpression = propertyExpresssion.Body as MemberExpression; |
||||||
|
if (memberExpression == null) |
||||||
|
{ |
||||||
|
throw new ArgumentException("The expression is not a member access expression.", "propertyExpresssion"); |
||||||
|
} |
||||||
|
|
||||||
|
var property = memberExpression.Member as PropertyInfo; |
||||||
|
if (property == null) |
||||||
|
{ |
||||||
|
throw new ArgumentException("The member access expression does not access a property.", "propertyExpresssion"); |
||||||
|
} |
||||||
|
|
||||||
|
var getMethod = property.GetGetMethod(true); |
||||||
|
if (getMethod.IsStatic) |
||||||
|
{ |
||||||
|
throw new ArgumentException("The referenced property is a static property.", "propertyExpresssion"); |
||||||
|
} |
||||||
|
|
||||||
|
return memberExpression.Member.Name; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue