FlowPipe.xaml.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. using System.Windows.Media;
  4. namespace CyberX8_Themes.UserControls
  5. {
  6. /// <summary>
  7. /// Interaction logic for FlowPipe.xaml
  8. /// </summary>
  9. public partial class FlowPipe : UserControl
  10. {
  11. public FlowPipe()
  12. {
  13. InitializeComponent();
  14. }
  15. public static readonly DependencyProperty FCornerRadiusProperty = DependencyProperty.Register(
  16. "FCornerRadius", typeof(CornerRadius), typeof(FlowPipe),
  17. new FrameworkPropertyMetadata(new CornerRadius(2), FrameworkPropertyMetadataOptions.AffectsRender));
  18. public static readonly DependencyProperty IsFlowingProperty = DependencyProperty.Register(
  19. "IsFlowing", typeof (bool), typeof (FlowPipe),
  20. new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
  21. public static readonly DependencyProperty FlowColorProperty = DependencyProperty.Register(
  22. "FlowColor", typeof(SolidColorBrush), typeof(FlowPipe),
  23. new FrameworkPropertyMetadata(new SolidColorBrush(Colors.Green), FrameworkPropertyMetadataOptions.AffectsRender));
  24. public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register(
  25. "RotateTransformValue", typeof(int), typeof(FlowPipe));
  26. public static readonly DependencyProperty IsReverseProperty = DependencyProperty.Register(
  27. "IsReverse", typeof(bool), typeof(FlowPipe),
  28. new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
  29. public int RotateTransformValue
  30. {
  31. get { return (int)this.GetValue(RotateTransformValueProperty); }
  32. set { this.SetValue(RotateTransformValueProperty, value); }
  33. }
  34. public bool IsFlowing
  35. {
  36. get { return (bool) this.GetValue(IsFlowingProperty); }
  37. set { this.SetValue(IsFlowingProperty, value); }
  38. }
  39. public SolidColorBrush FlowColor
  40. {
  41. get { return (SolidColorBrush)this.GetValue(FlowColorProperty); }
  42. set { this.SetValue(FlowColorProperty, value); }
  43. }
  44. public bool IsReverse
  45. {
  46. get { return (bool)this.GetValue(IsReverseProperty); }
  47. set { this.SetValue(IsReverseProperty, value); }
  48. }
  49. public CornerRadius FCornerRadius
  50. {
  51. get { return (CornerRadius)this.GetValue(FCornerRadiusProperty); }
  52. set { this.SetValue(FCornerRadiusProperty, value); }
  53. }
  54. public bool IsVertical { get; set; }
  55. protected override void OnRender(DrawingContext drawingContext)
  56. {
  57. base.OnRender(drawingContext);
  58. }
  59. }
  60. }