终端一体化运控平台
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.
 
 
 

37 lines
1.1 KiB

  1. using BPASmartClient.JXJFoodBigStation.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Reflection;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows;
  10. using System.Windows.Controls;
  11. using System.Windows.Data;
  12. using System.Windows.Documents;
  13. using System.Windows.Input;
  14. using System.Windows.Media;
  15. using System.Windows.Media.Imaging;
  16. using System.Windows.Navigation;
  17. using System.Windows.Shapes;
  18. namespace BPASmartClient.JXJFoodBigStation.View
  19. {
  20. /// <summary>
  21. /// RecipeSettingsView.xaml 的交互逻辑
  22. /// </summary>
  23. public partial class RecipeReceiveView : UserControl
  24. {
  25. public RecipeReceiveView()
  26. {
  27. InitializeComponent();
  28. this.IsUseLocalRecipe.Click += (o, e) => { GVL_BigStation.IsUseLocalRecipe = (bool)IsUseLocalRecipe.IsChecked; };
  29. ICollectionView cv = CollectionViewSource.GetDefaultView(recipeBox.ItemsSource);
  30. cv.GroupDescriptions.Add(new PropertyGroupDescription("RecipeCategory"));
  31. }
  32. }
  33. }