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

55 lines
1.5 KiB

  1. using BPASmartClient.JXJFoodBigStation.ViewModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Navigation;
  15. using System.Windows.Shapes;
  16. namespace BPASmartClient.JXJFoodBigStation.View
  17. {
  18. /// <summary>
  19. /// RecipeSendDownView.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class RecipeSendDownView : UserControl
  22. {
  23. public RecipeSendDownView()
  24. {
  25. InitializeComponent();
  26. }
  27. private void RadioButtonCompelete_Click(object sender, RoutedEventArgs e)
  28. {
  29. //repiceList.ItemsSource = RecipeSendDownViewModel.UserTreeCompelete;
  30. //repiceList.Visibility = Visibility.Visible;
  31. //repiceListMaking.Visibility = Visibility.Hidden;
  32. }
  33. private void RadioButtonWait_Click(object sender, RoutedEventArgs e)
  34. {
  35. //repiceList.ItemsSource = RecipeSendDownViewModel.UserTreeWait;
  36. //repiceList.Visibility = Visibility.Visible;
  37. //repiceListMaking.Visibility = Visibility.Hidden;
  38. }
  39. private void RadioButtonMaking_Click(object sender, RoutedEventArgs e)
  40. {
  41. //repiceListMaking.Visibility = Visibility.Visible;
  42. //repiceList.Visibility = Visibility.Hidden;
  43. }
  44. }
  45. }