借助网络配置,控制Modbus工具的日志显示,避免卡死界面
智能大石头 authored at 2021-12-11 22:09:19
340.00 B
XCoder
using System.Windows;
using CrazyCoder.ViewModels;

namespace CrazyCoder.Views;

/// <summary>语音助手窗口</summary>
public partial class SpeechWindow : Window
{
    /// <summary>实例化语音助手窗口</summary>
    public SpeechWindow()
    {
        InitializeComponent();

        DataContext = new SpeechViewModel();
    }
}