唐召明
authored
|
1
2
3
|
using HHECS.RobotTool.ViewModel.CommunicationVM;
using Microsoft.Extensions.DependencyInjection;
using RobotTool;
|
唐召明
authored
|
4
|
using System.Windows;
|
唐召明
authored
|
5
6
7
8
9
10
|
namespace HHECS.RobotTool.View.CommunicationView
{
/// <summary>
/// Communication_Index.xaml 的交互逻辑
/// </summary>
|
唐召明
authored
|
11
|
public partial class CommunicationView : Window
|
唐召明
authored
|
12
|
{
|
唐召明
authored
|
13
|
public CommunicationView()
|
唐召明
authored
|
14
15
16
17
18
19
|
{
InitializeComponent();
DataContext = App.Current.Services.GetService<CommunicationVM>()!;
}
}
}
|