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.
|
- using BeDesignerSCADA.Controls;
- using System.Windows;
-
- namespace BeDesignerSCADA
- {
- /// <summary>
- /// Interaction logic for MainWindow.xaml
- /// </summary>
- public partial class MainWindow : Window
- {
- CanvasPanelNew mainCanvas = new CanvasPanelNew($"{System.AppDomain.CurrentDomain.BaseDirectory}Layouts\\可视化界面菜单布局.yf");
- CodeCanvasPanel codeCanvasPanel = new CodeCanvasPanel();
- public MainWindow()
- {
- InitializeComponent();
- grid.Child = mainCanvas;
- //gridCode.Child = codeCanvasPanel;
- }
- }
- }
|