GrooveComputerPage.xaml.cs 487 Bytes
using HHECS.RobotTool.ViewModel;
using Microsoft.Extensions.DependencyInjection;
using RobotTool;
using System.Windows.Controls;

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