终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

RadioButton.cs 865 B

3 veckor sedan
123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. namespace BPASmartClient.Academy.Themes
  9. {
  10. public static class RadioButtonHelper
  11. {
  12. public static bool GetExecuteState(DependencyObject obj)
  13. {
  14. return (bool)obj.GetValue(ExecuteStateProperty);
  15. }
  16. public static void SetExecuteState(DependencyObject obj, bool value)
  17. {
  18. obj.SetValue(ExecuteStateProperty, value);
  19. }
  20. /// <summary>
  21. /// 指令的执行状态。
  22. /// </summary>
  23. public static readonly DependencyProperty ExecuteStateProperty =
  24. DependencyProperty.RegisterAttached("ExecuteState", typeof(bool), typeof(RadioButtonHelper), new PropertyMetadata(false));
  25. }
  26. }