终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

70 lines
1.9 KiB

  1. using BPASmartClient.Compiler;
  2. using BPASmartClient.SCADAControl;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Navigation;
  16. using System.Windows.Shapes;
  17. namespace BPASmartClient.SCADAControl.CustomerControls
  18. {
  19. public class TheSlider : Slider, IExecutable
  20. {
  21. public event EventHandler PropertyChange; //声明一个事件
  22. static TheSlider()
  23. {
  24. DefaultStyleKeyProperty.OverrideMetadata(typeof(TheSlider), new FrameworkPropertyMetadata(typeof(TheSlider)));
  25. }
  26. public string ControlType => "控件";
  27. private bool isExecuteState;
  28. public bool IsExecuteState
  29. {
  30. get { return isExecuteState; }
  31. set
  32. {
  33. isExecuteState = value;
  34. if (IsExecuteState)
  35. {
  36. Register();
  37. Style = null;
  38. }
  39. }
  40. }
  41. public string ValueChangedExecute
  42. {
  43. get { return (string)GetValue(ValueChangedExecuteProperty); }
  44. set { SetValue(ValueChangedExecuteProperty, value); }
  45. }
  46. public static readonly DependencyProperty ValueChangedExecuteProperty =
  47. DependencyProperty.Register("ValueChangedExecute", typeof(string), typeof(TheSlider), new PropertyMetadata(string.Empty));
  48. public void Register()
  49. {
  50. ValueChanged += TheSlider_ValueChanged;
  51. }
  52. private void TheSlider_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
  53. {
  54. Config.GetInstance().RunJsScipt(ValueChangedExecute);
  55. }
  56. public void Dispose()
  57. {
  58. }
  59. }
  60. }