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

19 lines
494 B

  1. using BeDesignerSCADA.Controls;
  2. using System.Windows;
  3. namespace BeDesignerSCADA
  4. {
  5. /// <summary>
  6. /// Interaction logic for MainWindow.xaml
  7. /// </summary>
  8. public partial class MainWindow : Window
  9. {
  10. CanvasPanelNew mainCanvas = new CanvasPanelNew($"{System.AppDomain.CurrentDomain.BaseDirectory}Layouts\\可视化界面菜单布局.yf");
  11. public MainWindow()
  12. {
  13. InitializeComponent();
  14. grid.Child = mainCanvas;
  15. }
  16. }
  17. }