终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

42 wiersze
1.2 KiB

  1. using BPA.Helper;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. namespace BPASmartClient.DosingSystem.View
  5. {
  6. /// <summary>
  7. /// RecipeSettingsView.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class RecipeSettingsView : UserControl
  10. {
  11. public RecipeSettingsView()
  12. {
  13. InitializeComponent();
  14. this.Unloaded += RecipeSettingsView_Unloaded;
  15. }
  16. private void RecipeSettingsView_Unloaded(object sender, RoutedEventArgs e)
  17. {
  18. Json<LocalRecipe>.Save();
  19. }
  20. //public static void SetAlignment()
  21. //{
  22. // //获取系统是以Left-handed(true)还是Right-handed(false)
  23. // var ifLeft = SystemParameters.MenuDropAlignment;
  24. // if (ifLeft)
  25. // {
  26. // Console.WriteLine($"系统为左撇子,转换为右撇子。");
  27. // // change to false
  28. // var t = typeof(SystemParameters);
  29. // var field = t.GetField("_menuDropAlignment", BindingFlags.NonPublic | BindingFlags.Static);
  30. // field.SetValue(null, false);
  31. // ifLeft = SystemParameters.MenuDropAlignment;
  32. // }
  33. //}
  34. }
  35. }