RobotConfigPage.xaml.cs 505 Bytes
using HHECS.RobotTool.ViewModel.RobotConfigVM;
using Microsoft.Extensions.DependencyInjection;
using RobotTool;
using System.Windows.Controls;

namespace HHECS.RobotTool.View.RobotConfigView
{
    /// <summary>
    /// RobotConfigPage.xaml 的交互逻辑
    /// </summary>
    public partial class RobotConfigPage : Page
    {
        public RobotConfigPage()
        {
            InitializeComponent();
            DataContext = App.Current.Services.GetService<RobotConfigVM>()!;
        }
    }
}