PropertyCommandParameter.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Windows;
  3. namespace OpenSEMI.ClientBase.Command
  4. {
  5. public class PropertyCommandParameter<TCustomParameter, TValue> : CommandParameter<TCustomParameter>
  6. {
  7. public DependencyProperty Property
  8. {
  9. get;
  10. private set;
  11. }
  12. public TValue Value
  13. {
  14. get;
  15. private set;
  16. }
  17. public PropertyCommandParameter(TCustomParameter customParameter, DependencyProperty property, TValue value)
  18. : base(customParameter)
  19. {
  20. Property = property;
  21. Value = value;
  22. }
  23. public new static PropertyCommandParameter<TCustomParameter, TValue> Cast(object parameter)
  24. {
  25. PropertyCommandParameter<object, object> propertyCommandParameter = parameter as PropertyCommandParameter<object, object>;
  26. if (propertyCommandParameter == null)
  27. {
  28. throw new InvalidCastException($"Failed to case {parameter.GetType()} to {typeof(PropertyCommandParameter<object, object>)}");
  29. }
  30. return new PropertyCommandParameter<TCustomParameter, TValue>((TCustomParameter)propertyCommandParameter.CustomParameter, propertyCommandParameter.Property, (TValue)propertyCommandParameter.Value);
  31. }
  32. }
  33. }