ProjectBlock.xaml.cs 844 B

1234567891011121314151617181920212223242526272829303132333435
  1. using NEIntelligentControl2.Models.Messages;
  2. using NEIntelligentControl2.Service.WebSocket;
  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 NEIntelligentControl2.Views.Matrix
  18. {
  19. /// <summary>
  20. /// 期次模块
  21. /// </summary>
  22. public partial class ProjectBlock : UserControl
  23. {
  24. public ProjectBlock()
  25. {
  26. InitializeComponent();
  27. }
  28. internal void AddWindturbine(WindBlock bs)
  29. {
  30. _UGMain.Children.Add(bs);
  31. }
  32. }
  33. }